pyvenv is a tool that allows users to create a python virtual environment to isolate project dependencies. Similar to : virtualenv
Questions tagged [pyvenv]
50 questions
0
votes
1 answer
Don't want to use venv, but want to use virtualenv
I want to do some experiments with tensorflow in virtualenv. I followed the tutorial and install tensorflow and virtualenv. Everything works well. However, when I try to use matplotlib.pylot. It said I need framework. So I follow the [solution][1]…

zhen
- 3
- 2
0
votes
0 answers
Why the 'Protocol Error' is raised when i try to build virtual enviroment with pyvenv?
My host machine is win8 and virtual machine is Ubuntu 16. I make a dir--web_django in the Ubuntu as the synced folder. When I try to use pyvenv create a virtual environment, the error is raised:
Error: [Errno 71] Protocol error: 'lib' ->…

nicoplus
- 11
- 2
-1
votes
2 answers
not able to run pip in python3 venv (OS : Ubuntu 22.04.1 LTS)
I created python virtual env using below command
python3 -m venv env
But I am not able to run pip inside it to install dependencies, can someone please help,
though I can see pip present inside bin
(env)…

souradeep majumdar
- 137
- 1
- 1
- 17
-1
votes
1 answer
Python with virtual evironment not working with my own package
My project looks like this:
src
|--annotation_correction
|--|--suggestion.py
|--|--error.py
|--|--...
venv
|--...
I installed my package, using pip install -e . while in the main folder.
When I type pip freeze, my package "annotation" is in…

Timmel
- 17
- 5
-1
votes
3 answers
python Virtual Environments Error: 'list' object has no attribute 'read'
I'm following this tutorial for create a venv in python (for a flask's project on windows):
https://docs.python.org/3/tutorial/venv.html
When i execute the following command:
python3 -m venv tutorial-env
the following error is generated:
Error:…

F.Arrighi
- 11
- 3