2
6

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 5 years have passed since last update.

PyCharmでのvirtualenv環境

Posted at

概要

  • Pycharmでプロジェクト毎にPython環境を切り替え、プロジェクト固有のライブラリをシステムのpython環境を汚すことなくインストールしたい。
  • pythonのvirutualenvで可能となるが、Pycharm環境ではどう設定するか?

PyCharm環境

実例

プロジェクト作成

  • New environment usingで「Virtualenv」を指定
  • Base interpreter:で使用するPythonランタイムパスを指定
    image.png

プロジェクトを開く

  • ターミナルは以下のようにvirtualenv(Hoge)にアタッチ済
  • pythonバージョンは指定した3.6になっている。
    image.png

プロジェクト固有のライブラリをインストール

  • プロジェクトの端末からpipでscapy 2.4.0をインストール
    image.png

  • プロジェクトのScriptsフォルダにscapyライブラリがインストールされている。

  • image.png

  • システムのPython3.6環境はクリーン(scapyライブラリはインストールされていない)

  • image.png

2
6
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
2
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?