编程吴彦祖 代码蔡徐坤

Results 191 issues of 编程吴彦祖 代码蔡徐坤

修改文件目录结构

项目启动的时候出现了这个 ``` TimeoutError: [Errno 60] Operation timed out ``` 请问一下现在这个项目不再维护了么,看到最新版本还是停留在7102年。

你好,请问后面还会重制图片么,在高清屏下icon显示有些模糊,在用mac的时候左侧的图片有些发虚。

Buyvm 如何挂载硬盘教程:buyvm 无限流量的 VPS,再购买一个 Block Storage Slabs 存储盘,挂载到 VPS 上就可以扩展硬盘变成大盘鸡。后面有 buyvm 存储块挂载方法步骤教程: Block Storage Slabs 存储块:每 256GB 存储 1.25 美元,1TB 才 5 美元,最高可扩展 10TB 硬盘。 机房:Las Vegas (拉斯维加斯 LV)、 New...

## 准备工作 1、VPS 一台(可以科学上网)推荐系统 Ubuntu、Debian 2、确定 VPS 9527 端口开放!可以通过 [**这里**](https://tool.chinaz.com/port) 检测 3、Telegram 账号一个,并关注 机器人([R 探长的小助理](https://t.me/radiance_helper_bot))、([R 探长](https://t.me/agentONE_R)) 4、甲骨文免费云账号一个 GitHub 项目地址:[点击访问](https://github.com/semicons/java_oci_manage) ### 获取 VPS INFO 我们打开 telegram,找到刚才关注的机器人,发送指令 `/sart`,开始!(若有什么疑问,可以发送 `/help`) 在输入框里面输入 `/raninfo`,为了防止误触,需要输入两次,机器人会返回两行字符串,这些是我们 VPS...

``` whereis pip 414 cd 415 opkg 416 opkg install python3 417 sudo opkg install python3 418 python3 419 ls 420 pip install tiptop 421 pip3 install tiptop 422 ls...

威联通的环境变量地址: `PATH=/opt/bin:$PATH` ``` wget http://bin.entware.net/other/Entware_1.00std.qpkg sudo sh Entware_1.00std.qpkg export PATH=/opt/bin:$PATH sudo opkg update sudo opkg install coreutils sudo opkg install coreutils-nohup nohup ```

https://www.joycode.com.cn/archives/758 ``` /opt/bin/opkg ``` opkg 支持的软件列表 http://pkg.entware.net/binaries/x86-64/Packages.html ``` sudo opkg install python3 ``` 本来想安装`tiptop`的,但是发现没有pip或者是pip3的命令,于是就在网上找到一个回答 ``` curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python get-pip.py ``` 结果python又运行不了,只能使用安装了的python3,但是此时又提示找不到,输入一下命令即可生效: ``` source /etc/profile.d/python3.bash python3 get-pip.py ``` 等待安装完成...

网站:https://www.qnapclub.eu/en/search SH 登录到命令行,执行下面命令: wget http://bin.entware.net/other/Entware_1.03std.qpkg sh Entware_1.03std.qpkg 成功后,可以安装软件,如: opkg install htop 修改 /etc/profile, 加入 /opt/bin 路径: ``` export PATH=\ /bin:\ /sbin:\ /usr/bin:\ /usr/sbin:\ /usr/bin/X11:\ /usr/local/sbin:\ /opt/bin ``` 在线查找安装包: [http://pkg.entware.net/binaries/x86-64/Packages.html](http://pkg.entware.net/binaries/x86-64/Packages.html) SSH...

pip3为例子: ``` pip3 config set global.index-url https://mirrors.aliyun.com/pypi/simple/ ``` ``` pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ ```