Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 920 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 920 Bytes

python-learning

Python Learning

Installed Python 3

Important Link During Learning

Commands

  • To crate a virtual environment [ python -m venv env ]
  • To Install pipenv [ pip install pipenv ]
  • To check where the pipenv is located [pipenv --venv]
  • To activate the pipenv viratul env [ pipenv shell ] to exit from env type exit
  • Install package from pip file [pipenv insall]
  • Install packages from pipfile.lock [ pipenv install --ignore-pipfile]
  • setup tool for create a own package [ pip install setuptools wheel twine]