LoginSignup
0
0

More than 5 years have passed since last update.

Debian7.8にpython3.4系をインストールして、virtualenvを動かす

Last updated at Posted at 2015-03-30

タイトルのとおり

Pythonのインストール

apt-get install libssl-dev openssl
wget https://www.python.org/ftp/python/3.4.3/Python-3.4.3.tgz
tar -xzvf Python-3.4.3.tgz
cd Python-3.4.3
./configure --prefix=/usr/local/python-3.4
make
make install

virtualenvのインストール

/usr/local/python-3.4/bin/pip3 install virtualenv
mkdir project
/usr/local/python3.4/bin/virtualenv-3.4 project
cd project
source bin/activate

前まで、--no-site-packagesオプションつけてたんだけど、どうもいらなくなったみたい。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0