按照<python编程从入门到实践>上的教程下载了pygame的whl文件进行安装, 在cmd窗口里import pygame提示无错误,在IDEL里程序也能正常运行, 但是pycharm里报错    import pygame ModuleNotFoundError: No module named 'pygame' 在project interpreter设置里选择项目以及右边绿色加号,添加Pygame 却提示失败 -------------------------------------…
ensorflow安装好了,在python中也测试过了,但在jupyter中却会报错,原因是先装的Anaconda 之后装的tensorflow,所以环境有问题,所以需要重装jupyter,先激活tensorflow环境,再重装: source activate tensorflow #激活tensorflow环境 conda install ipython conda install jupyter jupyter notebook #重新打开jupyter notebook…
# 故障描述 shell > pip install gensim # 报错信息如下: Command "c:\users\op\appdata\local\programs\python\python35\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\op\\AppData\\Local\\Temp\\pip-bu ild-x0lf1g8n\\scipy\\setup.py';f=getat…
1.环境变量配置 (1)用打开后下面的"系统变量"进行配置,下面的名字为Path: (2)举例,如果安装ping.exe:而且ping.exe在C:\lianghua\ping.exe下面,那么环境配置的时候应该装为C:\lianghua: (3)添加环境变量用英文符号: 2.pip install 一直装就行了,报错差什么就继续装什么.…
2017年2月16日,Google正式对外发布Google TensorFlow 1.0版本,并保证本次的发布版本API接口完全满足生产环境稳定性要求.这是TensorFlow的一个重要里程碑,标志着它可以正式在生产环境放心使用.在国内,从InfoQ的判断来看,TensorFlow仍处于创新传播曲线的创新者使用阶段,大部分人对于TensorFlow还缺乏了解,社区也缺少帮助落地和使用的中文资料.InfoQ期望通过深入浅出TensorFlow系列文章能够推动Tensorflow在国内的发展.欢迎加…
https://github.com/tensorflow/tensorflow 原文地址 Machine Learning in the Cloud, with TensorFlow Wednesday, March 23, 2016   Posted by Slaven Bilac, Software Engineer, Google Research用TensorFlow在云端进行机器学习 At Google, researchers collaborate closely with pr…
tensorflow成功安装后 import tensorflow as tf 报警:“ FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'” 可能原因:numpy 的版本过低或者过高都会出现警告 解决:先卸载现有的numpy版本…
matplotlib是python中强大的画图模块. 首先确保已经安装python,然后用pip来安装matplotlib模块. 进入到cmd窗口下,建议执行python -m pip install -U pip setuptools进行升级. 接着键入python -m pip install matplotlib进行自动的安装,系统会自动下载安装包. 安装完成后,可以用python -m pip list查看本机的安装的所有模块,确保matplotlib已经安装成功. 如果你能看的上面的m…
环境: ide:pyCharm 2018.3.2 pyhton3.7 os:win10 64bit 步骤: 1.确认你的python有没有装pip,有则直接跳2.无则cmd到python安装目录下easy_install-3.7.exe pip. 2.下载https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-1.12.0-cp36-cp36m-win_amd64.whl (需用VPN) 3.将其移动到python…