摘要:
搭建tinyproxy代理 采用的系统是ubuntu18 安装tinyproxy apt update apt install tinyproxy 修改配置文件 vim /etc/tinyproxy/tinyproxy.conf Port 8888 Timeout 600 MaxClients 10 阅读全文
摘要:
linux搭建tomcat 我的linux版本是debian9 想法: 1、我想搭建tomcat,但是肯定是需要安装java的 安装java apt-get update apt-get install default-jdk apt-get install default-jre 安装tomcat 阅读全文
摘要:
jupyterlab安装并且支持java 最近买了一个2核2g的linux VPS,我装的linux系统是ubuntu18,想用来跑python和java 首先安装pip3 apt install python3-pip 安装jupyterlab(装的慢的话可以加i参数指定下载源) pip3 ins 阅读全文
摘要:
今天突然看到了PyWeChatSpy ,众所周知,微信网页版不能登录,之前的微信机器人都不能用了,用以下代码,可以实现自动回复。详情可以去github搜,注意微信的版本,目前好像只支持2.8.0.133 我在别人的基础上修改了一下代码,具体如下: from PyWeChatSpy import We 阅读全文
摘要:
Python垃圾变量 看一个代码 def test(name:str,num:int)->None: for _ in range(num): print('我的名字是{}'.format(name)) test('xiaoxiao',10) 这么简单的一个代码为啥要写的这么花里胡哨。有疑问的地方一 阅读全文
摘要:
Python3的高级用法之类型提示 是不是曾经看到过类似这样的代码 def greeting(name: str) -> str: return 'Hello ' + name 感觉很高大上。 这其实是Python3.5版本开始的一个新功能,类型提示。这个代码的意思就是,提示你输入参数name的值是 阅读全文
摘要:
手动安装Python的库 首先你需要先下载Python的第三方库,可以用阿里云的镜像 http://mirrors.aliyun.com/pypi/simple/ 点击链接,现在以下载seaborn为例 在界面按Ctrl+F 搜索seaborn 找到要下载的选项 点进去选想要下载的版本比如seabo 阅读全文
摘要:
今天打算用keras-bert来进行文本分类,linux系统没啥问题,但是windows系统下用pycharm报以下错误 ImportError: cannot import name 'Tokenizer' from 'keras_bert' 网上很多都是说更新kerast-bert pip in 阅读全文
摘要:
以下操作都是翻译的官方文档(不全) 安装seaborn pip3 install seaborn seborn加载数据集 import seaborn as sb df = sb.load_dataset('tips') print(type(df)) print(df.head) 可以看出df的类 阅读全文
摘要:
xlrd和xlwt 安装代码 pip3 install xlrd pip3 install xlwt xlrd 打开文件 xlrd.open_workbook(filename=None, logfile=<_io.TextIOWrapper name='<stdout>' mode='w' enc 阅读全文