28
loading...
This website collects cookies to deliver better user experience
pip
. Pip is a package manager for Python. If you are coming from a JavaScript background you might know about npm or yarn. So, before we install any packages in python we need to confirm if pip is installed on our system or not. Generally, the python installer installs pip alongside python. To verify pip installation, you can use the following command in your terminalpip --version
python -m pip install --upgrade pip
pip install package_name
pip install xlsxwriter
csv
and json
named inbuilt packages. To use these packages we need to import them the same way we imported the xlsxwriter package.pip install package_name -t PATH_TO_ROOT_FOLDER
pip install xlsxwriter -t .