pipfile

ModuleNotFoundError: No module named 'virtualenv.seed.via_app_data

ModuleNotFoundError: No module named 'virtualenv.seed.via_app_data Question: I had installed virtualenv by sudo -H pip3 install virtualenv, and created a venv by virtualenv, but now I can’t create env in my new Django project that includes Pipfile. I tried: $ pipenv shell But its result is: Creating a virtualenv for this project… Pipfile: /home/mostafa/py38/lib/python3.8/site-packages/carfix/Pipfile Using /usr/bin/python3.8 …

Total answers: 4

How to freeze a requirement with pipenv?

How to freeze a requirement with pipenv? Question: For example we have some pipfile (below) and I’d like to freeze the django version. We don’t have a requirements.txt and we only use pipenv. How can I freeze the django version? [[source]] url = “https://pypi.org/simple” verify_ssl = true name = “pypi” [packages] django = “*” [dev-packages] …

Total answers: 11