HOW TO INSTALL PACKAGE IN PYTHON WITH PYCHARM IDE
What is a package in python ?
2 min readNov 2, 2019
A package is a collection of module files while a module is a file that contains a collection of functions, classes and other Python code.
Okay, lets check this out !!!
- First, create a new respository on github and clone in your Pycharm application. (you can see the tutorial in my stories before this stories)
- After opened the project sheet on pycharm. click settings > project > project interpreter. click the sign (+) in the lower right corner of the logo settings.
3.
3. Find the packages that you want to download in the ‘search coloumn’. after that, click “Install Package”.
4. You can check whether the package is installed or not in ur PyCharm. click terminal and write “pip install the name of the package that was downloaded” example “pip install beautifulsoup4”
5. TADAAA!!!! Package Beautifulsoup4 already to use.
Beautifulsoup4 package uses will be discussed in the next story, stay tune!!