Questions tagged as 'virtualenv'

3
answers

Installing with PIP through the requirements.txt file inside VirtualEnv?

I've learned these days that through the pip freeze > requirements.txt command, I can generate a dependency list for a specific project where I'm using VirtualEnv . How do I install all the libraries contained within this r...
asked by 01.06.2017 / 17:16
1
answer

Questions about virtualenv

I'm starting development with virtualenv and some doubts have arisen, they are: Should Python scripts be inside the virtual environment folder? In the PyCharm IDE, do you need to configure something to develop in the enabled virtual enviro...
asked by 26.07.2017 / 21:34
2
answers

virtualenv with kivy

Using Ubuntu 16.04, I installed virtualenv and created a virtual environment. In this virtual environment I installed Cython using: pip install cython==0.23 Kivy install command: pip install kivy But it returns a lot of errors, amon...
asked by 04.09.2016 / 21:17
1
answer

How can I use Django 1.9.6 within my virtual environment?

I'm trying to use django version 1.9.6 in the virtual environment 'myvenv' I created through the ubuntu terminal, but even after I installed it using the pip3 install django==1.9.6 command, when I use python manage.py runserver I g...
asked by 16.05.2016 / 20:16
1
answer

Error installing psycopg2 in a virtualenv environment with pypy

I installed the pypy of the following form: wget https://bitbucket.org/pypy/pypy/downloads/pypy3-v5.10.1-linux64.tar.bz2 tar xf pypy3-v5.10.1-linux64.tar.bz2 virtualenv -p ~/pypy3-v5.10.1-linux64/bin/pypy my-pypy-env...
asked by 21.02.2018 / 14:54
2
answers

How to create a virtualenv with a different python path than the ones installed?

I am using virtualenv to install some packages of my projects so that they do not conflict, but I need to use a version of python that is not installed on the system, as I use linux the same already comes with 2.7 and to 3.5 installed, but I nee...
asked by 17.12.2016 / 02:06
1
answer

installing Django in a venv

I'm trying to install the latest version of Django (1.9.6) in my virtualenv, but when I use the pip install django command inside the virtual environment, I get the following return: Requirement already satisfied (use --upgrade to upgrade): dj...
asked by 01.06.2016 / 21:13
2
answers

How to configure the Django environment and keep the settings?

Hello, I'm starting to learn Django and well part of the material teaches to do the setting of Environment with Virtualenv. But I'm having a lot of trouble configuring the System. First, I use a Macbook Pro with Sierra OSX. Second, I have alr...
asked by 18.05.2017 / 05:31
1
answer

Start a virtualenv with .bat file

I have the following .bat cd C:\Users\SERVIDOR-ARQUIVOS\Documents\workspace\email\.venv\Scripts activate.bat cd C:\Users\SERVIDOR-ARQUIVOS\Documents\workspace\email\src python manage.py (comando personalizado) It goes to the folder but clos...
asked by 19.02.2018 / 21:49
1
answer

Problem creating the environment with django

I'm trying to create a project in virtualized environment with the virtualwrapper tool, in this environment I installed django but when trying to create a project with the command django-admin startproject meu-projeto it does not create t...
asked by 07.12.2016 / 19:14