0
0

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.

PyCharmでpip installできないライブラリをimportする

Last updated at Posted at 2020-11-03

実行環境

  • Ubuntu 18.04
  • Python 2.7
  • PyCharm Community 2020.2

経緯

Ubuntuでweiliu89さんのssd-caffeを導入したのですが、Pythonインタープリタまわりが初心者だったためPyCharm環境でうまくimportできませんでした。解決したので記録を残しておきます。

今回はCaffeをimportしていますが、github等からcloneしたものは全般的に同様の手順でimportできるようになるはずです。

手順

1. PyCharmでインタープリタの設定をする

PyCharmを開き、ファイル -> 設定 -> プロジェクト:プロジェクト名 -> Pythonインタープリター
でインタープリタの設定ページに移動します。

defaultではPython2.7 /usr/bin/python2.7(灰文字)とかになっているのではないでしょうか。
ここを切り替えることでPythonのバージョンを変えたりすることができます。

下にインストールされているパッケージがリスト化されていると思います。

2. インタープリタにPathを加えるだけ

では使いたいインタープリタにPathを加えましょう。
右の歯車ボタンからすべて表示を選択すると、使用できるインタープリタの一覧が表示されます。
ここで使用したいものを選択した状態で、右の5つのアイコンのうち一番下の「選択したインタープリタのパスを表示する」を開きます。

するとパスがズラッと表示されますね。
今回はCaffeを入れたいので、追加ボタンを押して、"/home/usrname/caffe/python"を追加します(環境によって変えてください)。

適用してimport caffeで確認してみましょう。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?