Preguntas etiquetadas con virtualenv


3
Error al instalar scrapy en virtualenv usando pip
pip install scrapy Downloading/unpacking scrapy Downloading Scrapy-0.24.2-py2-none-any.whl (502kB): 502kB downloaded Downloading/unpacking pyOpenSSL (from scrapy) Downloading pyOpenSSL-0.14.tar.gz (128kB): 128kB downloaded Running setup.py (path:/home/elie/.virtualenvs/stat/build/pyOpenSSL/setup.py) egg_info for package pyOpenSSL warning: no previously-included files matching '*.pyc' found anywhere in distribution no previously-included directories found matching 'doc/_build' Requirement already satisfied (use --upgrade to upgrade): six>=1.5.2 …

2
pyvenv vs venv vs python-virtualenv vs virtualenv y python 3
malikarumi@Tetouan2:~$ pip install virtualenv Collecting virtualenv Downloading virtualenv-12.0.7-py2.py3-none-any.whl (1.8MB) 100% |################################| 1.8MB 330kB/s malikarumi@Tetouan2:~$ pip freeze (a lot of stuff, but not virtualenv) malikarumi@Tetouan2:~$ virtualenv testvenv1 The program 'virtualenv' is currently not installed. You can install it by typing: sudo apt-get install python-virtualenv ¿Que esta pasando aqui? es python-virtualenv == …
13 apt  python  pip  virtualenv 


3
¿Cómo instalo Pygame en virtualenv?
En instalado python-virtualenv, porque esta pregunta decía que debería usar virtualenv para instalar pygame. Sin embargo, no estoy realmente seguro de cómo se logra eso. Lo que hice (siguiendo estas instrucciones ): virtualenv --no-site-packages --distribute -p /usr/bin/python3.3 ~/.virtualenvs/pywork3 --no-pip Y luego no sé a dónde ir. ¿Cómo instalo pygame para …

1
Intentando crear un entorno virtual de Python pero obteniendo OSError
He instalado python3.3, pip-1.5, ditribute-0.7.3, virtualenv-1.11. Estoy dando el siguiente comando para crear un entorno virtual virtualenv --no-site-packages test Estoy teniendo el siguiente error name@server:~/py_virenv$ virtualenv --no-site-packages test Using base prefix '/usr/local' New python executable in test/bin/python3 Not overwriting existing python script test/bin/python (you must use test/bin/python3) Installing setuptools, pip... …

2
No se puede crear un entorno virtual con Python 3.6
Estoy instalado python 3.6 en mi Ubuntu 17.04. Ahora, estoy tratando de crear un entorno virtual con el comando: python3.6 -m venv env pero recibo el siguiente mensaje: The virtual environment was not created successfully because ensurepip is not available. On Debian/Ubuntu systems, you need to install the python3-venv package …
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.