pip install supervisor pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org --upgrade supervisor echo_supervisord_conf > /etc/sup ...
分类:
其他好文 时间:
2020-07-31 12:28:12
阅读次数:
70
下载安装程序 wget https://www.apachefriends.org/xampp-files/7.4.8/xampp-linux-x64-7.4.8-0-installer.run (window版本:https://www.apachefriends.org/xampp-files/ ...
分类:
系统相关 时间:
2020-07-30 22:10:03
阅读次数:
93
asp.net core Webapi是有多种上传文件的方法的 另外swagger ui也可以选择文件来上传文件 下面直接上code 1:WebApi后端代码 1 using System; 2 using System.Collections.Generic; 3 using System.Lin ...
需求: 支持文件批量下载。 使用JS能够实现批量下载,能够提供接口从指定url中下载文件并保存在本地指定路径中。 服务器不需要打包。 支持大文件断点下载。比如下载10G的文件。 PC端全平台支持。Windows,macOS,Linux 全浏览器支持。ie6,ie7,ie8,ie9,ie10,ie11 ...
分类:
Web程序 时间:
2020-07-30 16:53:09
阅读次数:
127
Failed to deploy 'Compose: docker': com.intellij.execution.process.ProcessNotCreatedException: Cannot run program "C:\Program Files\Docker\Docker\reso ...
一 词汇训练 类(class):告诉python创建一个新类型的东西。(Tell python to make a new type of thing). 对象(object):两种含义:最基本类型的东西,任何实例。(the most basic type of thing,and any inst ...
分类:
其他好文 时间:
2020-07-29 21:49:24
阅读次数:
77
通过文件夹导入包要求每个目录下都有一个__init__.py文件,此文件可空白。也可不空。 a@ubuntu:~/Desktop$ tree myp myp ├── a │ ├── b.py │ └── __init__.py └── __init__.py 1 directory, 3 files ...
分类:
编程语言 时间:
2020-07-29 21:41:32
阅读次数:
70
##sed与正则表达式 sed中的正则与grep中的正则表示形式不同,没有\d,\w等,而是使用[[:digit:]] [[:alpha:]]等 ??? sed中似乎也没有零宽断言 ?? 极客学院的文章讲得比较清楚: https://wiki.jikexueyuan.com/project/unix ...
分类:
其他好文 时间:
2020-07-29 21:21:07
阅读次数:
78
# coding=utf-8 # This script is uesd to modify Agent IP at the first time of machine started. import requests import json import time import os import ...
分类:
其他好文 时间:
2020-07-29 17:54:47
阅读次数:
80
第一步: pip3 install django-multi-captcha-admin django-simple-captcha # 可以直接安装两个模块 第二步:配置settings.py INSTALLED_APPS = [ 'django.contrib.auth', 'django.co ...
分类:
其他好文 时间:
2020-07-29 17:41:31
阅读次数:
77