---
title: "PIP"  
description: "PIP"  
author: "Anonymous User"  
published: 2018-07-06  
updated: 2018-07-06  
canonical: https://www.mindstick.com/forum/34584/pip  
category: "python"  
tags: ["python"]  
reading_time: 1 minute  

---

# PIP

[PIP](https://www.mindstick.com/interview/34390/what-is-pip) in [Python](https://www.mindstick.com/articles/75378/simple-yet-useful-tips-when-using-python) ? How to [install](https://www.mindstick.com/articles/12876/the-top-5-reasons-to-buy-and-install-a-tonneau-cover) [packages](https://www.mindstick.com/blog/11962/packages-in-java) in Python ?

## Replies

### Reply by Prakash nidhi Verma

PIP :

PIP is a package manager for Python packages like a module.

Note: If you have Python version 3.4 or later, PIP is included by default.

A package contains all the files you need for a module.Modules are Python code libraries you can include in your project. Check if PIP is Installed in Navigation command line :

```
C:\Users\Your Name\AppData\Local\Programs\Python\Python36-32\Scripts>pip --version 
```

Install PIP

If you do not have PIP installed, you can download and install it from this page:

```
 https://pypi.org/project/pip/
```

Downloading a package is very easy. Open the command line and write for PIP to download the package you want.Download a package named "camelcase":

```
C:\Users\Your Name\AppData\Local\Programs\Python\Python36-32\Scripts>pip install camelcase
```

Using a Package:

Once the package is installed, it's ready to use. you can directly Import the "camelcase" package into your project.Import and use "camelcase":

```
import camelcasec = camelcase.CamelCase()
txt = "Mindstick"
print(c.hump(txt))
```


---

Original Source: https://www.mindstick.com/forum/34584/pip

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
