摘要:
用pip对已有的环境做导出准备 1. 使用pip导出当前环境所有依赖包信息文件 pip freeze > requirements.txt 2. 下载所有依赖包到本地 pip install -r requirements.txt -d your_dir pip install -r require 阅读全文
摘要:
然后到虚拟机的linux系统上面执行ifconfig查看linux系统的IP地址,访问这个地址就能访问mac里面的虚拟机 阅读全文
摘要:
[root@aaron tools]# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.5.1.zip unzip elasticsearch-5.5.1.zip [root@aaron elasti 阅读全文
摘要:
cd ~/tools unzip instantclient-basic-linux.x64-12.2.0.1.0.zip mv instantclient_12_2 /opt/ export ORACLE_HOME=/opt/instantclient_12_2/ mv instantclient 阅读全文
摘要:
➜ web_develop git:(master) ✗ ssh root@172.16.146.143@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ WARNING: REMOTE HOST IDENTIFICATION H 阅读全文
摘要:
点击设置, ip addr cd /etc/sysconfig/network-scripts/ cp ifcfg-eth0 ifcfg-eth1 vi ifcfg-eth1 IPADDR=192.168.135.2NETMASK=255.255.255.0 把UUID和HWADD这两行干掉 >/e 阅读全文
摘要:
前期准备 把所有的软件都传到这个tools文件夹 cd ~ mkdir tools cd tools/ mkdir /application 安装nginx yum install pcre pcre-devel yum install -y openssl openssl-devel tar xf 阅读全文
摘要:
下载系统各种依赖 nano /etc/apt/sources.list 在Debian中使用apt-get安装软件包时经常会提示让你插入netinst的光盘: Media change: please insert the disc labeled 把下面这一行注释掉 deb cdrom:[Debi 阅读全文
摘要:
1 class BallForm(forms.ModelForm): 2 class Meta: 3 model = Ball 4 fields = ["color", "description"] 5 6 def clean_description(self): 7 description = self.clean... 阅读全文