摘要: 1. 安装python 3.7 sudo apt install python3.7 sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 2 %python3 指向 python 3.7 sud 阅读全文
posted @ 2022-03-09 14:21 DarcyEliberth 阅读(110) 评论(0) 推荐(0)
摘要: 1. Mysql 8.0安装 sudo apt-get install mysql-server 2. Mysql 设置权限 ##Login in mysql as the root sudo mysql -u root ##Create a new user 'Admin', and '%' me 阅读全文
posted @ 2021-04-19 21:55 DarcyEliberth 阅读(195) 评论(0) 推荐(0)
摘要: 这其实是Couseral 上Andrew Ng 的 Machine learning上的作业,提供了几乎所有的框架,只需要我们完成几个函数 1. 画出原始数据图 %% Part 1: Plotting fprintf('Plotting Data ...\n') data = load('ex1da 阅读全文
posted @ 2020-08-25 14:33 DarcyEliberth 阅读(296) 评论(0) 推荐(0)
摘要: 作为Computer networks课程的一个project,我们需要实现用TCP在mininet中client和server的相互通信,需要能够传输文本文件,binary file 和image file。整个project的目的还是比较明确的。我主要列出了一下几个问题,需要在代码中实现。 1. 阅读全文
posted @ 2020-07-19 17:30 DarcyEliberth 阅读(3435) 评论(0) 推荐(0)
摘要: 1. We need to build the environemnt for the deepctr first pip install -U deepctr_torch 2. The current version is not supported by torch 1.5.0, we need 阅读全文
posted @ 2020-07-17 23:00 DarcyEliberth 阅读(592) 评论(0) 推荐(0)
摘要: pip是管理python文件库的工具,在下载python相关库时发挥着很大的作用,在这里对安装和使用过程中的报错问题总结一下 1. 安装 $ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py # 下载安装脚本 $ sudo python 阅读全文
posted @ 2020-07-16 22:07 DarcyEliberth 阅读(200) 评论(0) 推荐(0)
摘要: 因为虚拟机经常会出现崩溃的现象,所以会经常出现需要重装虚拟机的情况。很多时候,每次安装都是重新来过,忘记了基本的步骤。所以在这里简单总结一下 1. 建立虚拟磁盘镜像 2.导入不同版本型号的Ubuntu的镜像 3. 安装完毕后 4. 安装增强功能 5. 重启 5. sudo apt-get updat 阅读全文
posted @ 2020-07-16 19:06 DarcyEliberth 阅读(325) 评论(0) 推荐(0)