conda config --add channels
conda config --add channels
conda config --add channels
conda config --add channels
conda config --add channels
conda config --add channels
conda config --set show_channel_urls yes
建立配置檔案:
mkdir ~/.pip
vim ~/.pip/pip.conf
新增內容:
[global]
timeout
= 6000
index-url =
trusted-host = pypi.tuna.tsinghua.edu.cn
conda create -n new python=3.7 //這裡的環境名稱為new
source activate new
conda remove -n rcnn --all
conda install opencv
pip3 install opencv-contrib-python
pip install numpy
pip install matplotlib
pip install pillow //pil相關
pip install pandas //提供了dataframe等方便處理**資料的資料結構
pip install jieba //中文分詞元件
pip install -u scikit-learn //基於scipy和numpy的開源機器學習模組,有各種演算法
pip install theano //是乙個機器學習庫
pip install nose
pip install parameterized
//pip install --upgrade --ignore-installed tensorflow //安裝cpu版本的tensorflow
等等...
小公尺筆記本(顯示卡mx150)見說明
python
cuda
cudnn
tensorflow-gpu
3.610.0.130
7.6.0
12.0.0
1) 安裝cuda、cudnn
2) 在conda上建立虛擬環境,並進入虛擬環境
3) 用下面命令安裝tensorflow-cpu-1.12.0版本
pip install tensorflow==1.12.0
pip install 路徑\tensorflow_gpu-1.12.0-cp36-cp36m-win_amd64.whl
import tensorflow as tf
with tf.device(
'/cpu:0'):
a = tf.constant(
[1.0
,2.0
,3.0
],shape=[3
],name=
'a')
b = tf.constant(
[1.0
,2.0
,3.0
],shape=[3
],name=
'b')
with tf.device(
'/gpu:1'):
c = a+b
#注意:allow_soft_placement=true表明:計算裝置可自行選擇,如果沒有這個引數,會報錯。
#因為不是所有的操作都可以被放在gpu上,如果強行將無法放在gpu上的操作指定到gpu上,將會報錯。
sess = tf.session(config=tf.configproto(allow_soft_placement=
true
,log_device_placement=
true))
#sess = tf.session(config=tf.configproto(log_device_placement=true))
sess.run(tf.global_variables_initializer())
print
(sess.run(c)
)
結果:
[2. 4. 6.]
Anconda常用命令
conda version 檢視conda版本號 activate 不加引數,進入base環境 python 呼叫base環境下的python版本 pip 在base環境下安裝 exit 退出base環境中的python deactivate 退出base環境 conda create n open...
Anconda常用命令
不經常用,留存查閱 1 conda list 檢視安裝了哪些包 2 conda info e 檢視當前存在哪些虛擬環境 3 conda create n python36 python x.x 2.7 3.6等 建立 名字為 python36的 環境 4 conda activate python3...
Vim 命令和配置
1.游標移動 l右移乙個字元 h左移乙個字元 w右移乙個字 w右移乙個空白分隔字 b左移乙個字 b左移乙個空白分隔字 移到行尾 e右移到字的末尾 e右移到空白分隔字的末尾 0移到行首 return 移到下一行行首 j下移一行 移到上一行行首 k上移一行 句尾 句首 段尾 段首 2.檢視工作緩衝區 d...