虚拟机ubuntu16.04 anaconda keras学习记录(1)

TIPS:

1.可以使用虚拟终端,即在桌面环境下 按 Ctrl+Alt+T,或者桌面下直接右键,选择Open terminal

2.umount  卸载

3.进入某一文件夹操作:cd /tmp ;或者 当前文件夹界面右击-进入终端

4.重启:reboot

5.注销:log out

6.解压   tar -xzf 文件名

7.Sudo su 进入root权限  每句命令前加sudo  临时root权限


实现与主机文件传输:

安装Vmware tools https://blog.csdn.net/teacher20133/article/details/54601816

问题记录:

提示:You must restart your X session before any mouse or graphics changes takeeffect.You can now run VMware Tools by invoking"/usr/bin/vmware-toolbox-cmd" from thecommand line or by invoking"/usr/bin/vmware-toolbox" from the command line during an X server session.Toenable advanced X features (e.g., guest resolution fit, drag and drop, and fileand text copy/paste), you will need to do one (or more) of the following:1.Manually start /usr/bin/vmware-user2. Log out and log back into your desktopsession; and,3. Restart your X session.Enjoy,--the VMware team

对于这个,你只需重启一下虚拟机即可。


在主机新建文件夹linuxshare,在设置中启用对应


看/mnt目录,已经存在文件夹hgfs,而且里面有对应共享文件夹。


ubuntu16.04下载地址:

中科大源

     http://mirrors.ustc.edu.cn/ubuntu-releases/16.04/

阿里云开源镜像站

     http://mirrors.aliyun.com/ubuntu-releases/16.04/

兰州大学开源镜像站

     http://mirror.lzu.edu.cn/ubuntu-releases/16.04/

北京理工大学开源

     http://mirror.bit.edu.cn/ubuntu-releases/16.04/

浙江大学

     http://mirrors.zju.edu.cn/ubuntu-releases/16.04/


anaconda3安装

https://blog.csdn.net/u012318074/article/details/77074665


keras安装: pip install keras

验证:           python   >>>import keras

返回  Using TensorFlow backend.    即成功

你可能感兴趣的:(虚拟机ubuntu16.04 anaconda keras学习记录(1))