0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Python開発環境設定・確認のメモ

Posted at
Pythonバージョンの確認
python -V
環境の一覧表示
workon
環境「azure」のアクティブ化
workon azure
pip自体をアップグレード
pip install --upgrade pip
インストール済みのパッケージの一覧表示
pip list
環境「azure」の非アクティブ化
deactivate
環境「azure2」の作成
mkvirtualenv azure2
環境「azure2」の削除
rmvirtualenv azure2

導入

sudo pip3 install virtualenv
sudo pip3 install virtualenvwrapper
vim ~/.profile
.profileに追記
source /usr/local/bin/virtualenvwrapper.sh
export WORKON_HOME=~/.virtualenvs
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?