1. 程式人生 > >linux python 永久新增自己的模組路徑

linux python 永久新增自己的模組路徑

 

Linux 環境變數配置 : https://blog.csdn.net/freeking101/article/details/81013045

linux python 永久新增自己的模組路徑

 

新增路徑: cd /usr/local/python3/lib/python3.6/site-packages
          vi my.pth

 

1 . 臨時性新增
>>>import sys
>>>sys.path.append('模組路徑')
這樣有個問題是,當關閉shell後,就會失效

 

2 . 永久性新增
shell 下,cd /usr/lib/python2.7/dist-packages 
然後建立一個.pth的檔案,例如我們建立一個mytest.pth
$ sudo echo mytest.pth
然後我們開啟這個檔案進行編輯
$sudo gedit mytest.pth
然後就會看到我們建立的檔案打開了,在檔案裡新增我們要新增的模組路徑,例如我的是 /home/ghz/caffe/python/,儲存退出
$python
>>>import caffe
>>>
ok,成功