Anaconda安装PyCUDA问题

时间:2024-04-11 20:41:37

发现一个比较好的博客pip和conda安装源更改
pip和conda安装源更改2

  • step1:Anaconda安装PyCUDA问题
pip install PyCUDA

##下面两句话是配置源,用清华镜像源,第一个是添加源到路劲里,第二条语句把清华源设置为第一个

#这样指定源比较好用
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas 


conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
#添加源
conda config --add channels http://pytorch.org
#加利福利亚大学
https://www.lfd.uci.edu/~gohlke/pythonlibs/

#查看有那些源
conda config --show channels

conda search  --full --name tensorflow #可以查看那些版本的tensorflow可用
  • 出现error
    Anaconda安装PyCUDA问题