install

小白快速搭建网站

心已入冬 提交于 2020-01-31 02:42:23
小白快速搭建网站包含宝塔 1.购买域名,登录阿里云->域名->域名注册 2.购买服务器复制公网ip 3.域名解析 开放端口号 宝塔所需端口号 20 、21、 39000-40000端口(linux 系统 ),3000-4000(windows系统) 22 (SSH) 80、443(网站及SSL) 3306 (数据库远程连接) 888 (phpmyadmin) redis端口号一般为6379 webstocket端口号一般为7272 web服务默认端口80 4.下载putty 下载地址 5.下载好后安装宝塔 运行putty,输入公网ip 输入服务器实例账号回车,然后输入密码 如图表示链接成功 开始安装输入yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh 然后下图输入y 安装成功并记录你的信息,访问链接就可以了账号密码登录宝塔后可以修改 6.备案,手机下载阿里云APP找到产品控制台进行备案就可以了,速度很快 7.备案期间就可以把项目导入宝塔了 。。。。。楼主睡着了 来源: CSDN 作者: 瞎搞哒 链接: https://blog.csdn.net/CS__Love/article/details/104118511

autopy 使用初体验 The first day(hour)

柔情痞子 提交于 2020-01-31 00:51:32
安装:pip install autopy -i https://pypi.tuna.tsinghua.edu.cn/simple/ pip install autopy -i https://pypi.tuna.tsinghua.edu.cn/simple/ 外网网络不好 换了国内源 结果: '''官网: https://pypi.org/project/autopy/ 说用 pip install -U autopy 测试能不能直接安装,我安装好了才看到的。 。 如果失败,请安装 rustup ,然后运行: $ rustup default nightly-2019-10-05 $ pip install -U setuptools-rust $ pip install -U autopy ''' 测试: import autopy def test_foggy(): autopy.alert.alert("hello,world") test_foggy() 结果: 开始体验: 1.控制鼠标 import autopy def test_foggy(): autopy.alert.alert("hello,world") def mouse_move_foggy(x,y): autopy.mouse.move(x, y) if __name__ == '__main__':

安装swoole

白昼怎懂夜的黑 提交于 2020-01-31 00:19:27
swoole安装步骤 先安装如下依赖包 yum install wget $ yum install -y gcc gcc-c++ make zlib zlib-devel pcre pcre-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel openssl openssl-devel openldap openldap-devel nss_ldap openldap-clients openldap-servers yum install m4 yum install autoconf 1 下载php 7.2.2 wget https://www.php.net/distributions/php-7.2.22.tar.gz 2 进入目录 并且编译 安装 tar -zxvf php-7.2.22.tar.gz cd php-7.2.22 ./configure --prefix=

fbprophet安装及使用笔记

时光总嘲笑我的痴心妄想 提交于 2020-01-31 00:17:39
先行安装Anaconda以及pycharm fbprophet安装步骤 安装步骤: 1.创建一个虚拟环境: conda create 虚拟环境名 python=3.6.6(python3.7也可以) 2.激活虚拟环境:activate 虚拟环境名 3.安装MingW-w64编译器类型:conda install libpython m2w64-toolchain -c msys2 4.检查你的虚拟环境路径下\Lib\distutils中是否有distutils.cfg文件,如果没有就手动创建一个 5.conda install numpy cython -c conda-forge 6.conda install matplotlib scipy pandas -c conda-forge 7.conda install pystan -c conda-forge 8.conda install fbprophet -c conda-forge Anaconda镜像设置步骤 修改用户目录下的 .condarc 文件: channels: - defaults show_channel_urls: true default_channels: - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main - https:/

Windows环境下配置robotframework

两盒软妹~` 提交于 2020-01-30 23:17:10
Robot Framework安装准备 一、python3.6以上版本 安装过程中勾选“add python to path”,就可以自动配置好环境变量。 安装完成后在命令行输入python,如下图所示就是配置成功了。 二、在线安装robotframework 在命令行输入 pip install robotframework 进行安装,如果提示pip无法使用,则更新pip, 可在命令行中输入 python -m pip install --upgrade pip 来进行升级。 升级成功后输入 pip list,查看已经安装的库。 因为下载太慢,使用国内源进行下载,使用命令 pip install robotframework -i https://pypi.tuna.tsinghua.edu.cn/simple 三、安装wxpython 在命令行输入命令 pip install wxpython -i https://pypi.tuna.tsinghua.edu.cn/simple 四、安装robotframework-ride 在命令行输入命令 pip install robotframework-ride -i https://pypi.tuna.tsinghua.edu.cn/simple 五、安装robotframework-seleniumlibrary

Centos7下搭建LAMP平台环境

此生再无相见时 提交于 2020-01-30 19:15:43
centos发布7.0版本,新版本带来很多特性,除了内核更新到3.10外,支持 Linux 容器、Open VMware Tools 及 3D 图像能即装即用,转用 systemd、firewalld 及 GRUB2 ,而默认的文件系统为XFS等等,可以说是比较重大的升级。笔者尝试了使用Centos7搭建LAMP服务器平台,记录如下。 1.启用Apache2 Centos7默认已经安装httpd服务,只是没有启动。如果你需要全新安装,可以yum install -y httpd 启动服务:systemctl start httpd.service 设置开机自动启动:systemctl enable httpd.service HTTP服务器已经启动,进行一下简单配置 vi /etc/httpd/conf/httpd.conf #编辑文件 ServerSignature On #添加,在错误页中显示Apache的版本,Off为不显示 Options Indexes FollowSymLinks #修改为:Options Includes ExecCGI FollowSymLinks(允许服务器执行CGI及SSI,禁止列出目录) #AddHandler cgi-script .cgi  #修改为:AddHandler cgi-script .cgi .pl (允许扩展名为

Centos7下搭建LAMP平台环境

雨燕双飞 提交于 2020-01-30 19:13:23
centos发布7.0版本,新版本带来很多特性,除了内核更新到3.10外,支持 Linux 容器、Open VMware Tools 及 3D 图像能即装即用,转用 systemd、firewalld 及 GRUB2 ,而默认的文件系统为XFS等等,可以说是比较重大的升级。笔者尝试了使用Centos7搭建LAMP服务器平台,记录如下。 1.启用Apache2 Centos7默认已经安装httpd服务,只是没有启动。如果你需要全新安装,可以yum install -y httpd 启动服务:systemctl start httpd.service 设置开机自动启动:systemctl enable httpd.service HTTP服务器已经启动,进行一下简单配置 vi /etc/httpd/conf/httpd.conf #编辑文件 ServerSignature On #添加,在错误页中显示Apache的版本,Off为不显示 Options Indexes FollowSymLinks #修改为:Options Includes ExecCGI FollowSymLinks(允许服务器执行CGI及SSI,禁止列出目录) #AddHandler cgi-script .cgi  #修改为:AddHandler cgi-script .cgi .pl (允许扩展名为

Error during Xcode Component Installation

爷,独闯天下 提交于 2020-01-30 14:20:29
问题 I just installed a software update that I was prompted for, presumable affecting Xcode. Now when I start Xcode, I am presented with a dialog box which states that Xcode must install the Mobile Device Framework before continuing. When I try to do this, after providing my password, it fails with "An unknown error occurred. See the install log for more details." I do not see anything useful in install.log that identifies the problem. I've tried re-installing multiple times and rebooting to no

Some SDK installation problems

我的未来我决定 提交于 2020-01-30 12:59:33
问题 I would like to install the Android SDK with Eclipse. To start, I downloaded the SDK, the .exe for Windows as I am running XP Pro. It started and asked me to install the JDK. I stopped the SDK and installed the JDK. I was then able to install the Android SDK loading all the platforms. I then installed Eclipse Helios for Java and, following the instructions for "Hello World", I added the ADT. Continuing to follow the instructions, I started a new Java project. Unfortunately, on the new project

Install UWP without developer-mode and sideloading

心不动则不痛 提交于 2020-01-30 12:37:08
问题 In the win10 UWP with non-store, install app should open developer-mode or side-loading mode. However, My company have high security level. I can't change any setting for target notebooks. Specifically, these notebooks even not "for developers" in update&security. My job is create an auto wifi-selector app with UWP for company. So, this app will not upload to Microsoft store. Has any way to install UWP app to hundreds of notebooks with not open developer-mode or side-loading mode. 回答1: