Skip to content

vinay01joshi/python-learning

Repository files navigation

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]