- 博客(3)
- 收藏
- 关注
原创 2021-01-04
为什么Python每次运行后都会出现Process finished with exit code 0。 意味着你的程序正常执行完毕并退出。 exit code,在大部分编程语言中都适用: exit code 0 表示程序执行成功,正常退出 exit code 1 表示程序执行执行过程中遇到了某些问题或者错误,非正常退出 ...
2021-01-04 15:47:48 62
原创 windows下的TensorFlow
1、TensorFlow的安装 指令pip install tensorflow2.0或者conda install tensorflow2.0(如果你的电脑里已经安装了anaconda) 2、检测TensorFlow是否安装成功 import tensorflow as tf a = tf.constant([1, 5], dtype=tf.int64) print("a:", a) print("a.dtype:", a.dtype) print("a.shape:", a.shape) 运行结果 a
2020-08-01 18:17:48 76 1
原创 windows下Anaconda常用命令大全
**windows下Anaconda常用命令大全 1、配置虚拟环境 指令conda create --name xyy python=3.6 其中xyy是环境名称,python=3.6是安装的python的版本 2、安装某个文件里的数据包 指令pip install -r requirement.txt 不用一个一个安装,可以把需要安装的数据包的名称放到requirement.txt文件下,执行指令就可以。 ...
2020-07-31 12:38:02 391
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人