linux相关环境配置
linux相关环境配置
环境说明
123456789101112[root@localhost Python-3.6.6]# cat /etc/redhat-release Red Hat Enterprise Linux Server release 7.4 (Maipo)[root@localhost Python-3.6.6]# uname -aLinux localhost.localdomain 3.10.0-693.el7.x86_64 #1 SMP Thu Jul 6 19:56:57 EDT 2017 x86_64 x86_64 x86_64 GNU/Linux[root@localhost Python-3.6.6]# getenforce Disabled[root@localhost Python-3.6.6]# systemctl status firewalld.service ● firewalld.service - firewalld - dynamic firewall daemon Loaded: loaded (/usr/lib/system ...
linux安装tensorflow
linux 安装 tensorflow一、安装python3软件源
下载软件123mkdir -p /soft cd /soft wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tgz
安装12345tar xf Python-3.6.6.tgzcd Python-3.6.6mkdir -p /usr/local/python3./configure --prefix=/usr/local/python3make && make install
配置环境变量1234ln -s /usr/local/python3/bin/python3 /usr/bin/python3vim ~/.bash_profile PATH=$PATH:$HOME/bin:/usr/local/python3/binsource ~/.bash_profile
二、安装GLIBC2.16软件源
下载软件
123mkdir -p /soft cd /soft wget http://ftp.gnu.org/pub/gnu ...
rhce模拟题
#############
RHCE 考试#############
此次考试汇总你将使用多个操作系统,一台是您面前的物理机桌面系统,其他系统时运行在桌面系统上的已经预装好了的虚拟机。除非特别指出,所有考试要求都是在虚拟机上完成。你没有 root 权限访问物理机。但是你可以用物理机来测试虚拟机上要求完成的配置
###########
请注意:###########因为考试系统时虚拟机,所以你需要使用桌面上的 vm console 图标来访问虚拟机。您也可以通过 ssh 从桌面系统来访问虚拟机。但是您还没有完成相关考试要求前,是不能通过 ssh 访问虚拟机的。
###########
请注意:###########在考试期间 不允许和其他考生交流。也不允许尝试连接其他考生的主机。测试系统和网络都在监控之中,上述两种情况的发生可能导致您考试成绩为零。
################
其他配置信息################
您在考试中将使用两个系统的信息如下:serverx.example.com 是一个主要的服务器dekstopx.example.com 主要用作客户端(x是您的考 ...
安装WEB库
安装WEB库
flask安装
1234567891011121314151617181920212223pip3 install flask #flask需要使用ssl,所以在编译python时,需要打开ssl模块。#验证vi test.py3 from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return "Hi 13!" if __name__ == "__main__": app.run() python3 test.py3 * Serving Flask app "test" (lazy loading) * Environment: production WARNING: Do not use the development server in a production environment. Use a production WSGI server instead. * Debu ...
nginx配置
nginx配置123456789101112131415location ~ (/ccbms$|/ccbms/$) { rewrite ^(.*) http://$server_name$1/index.php;} location ~ /ccbms.*\.(js|css|jpg|png|gif)$ { proxy_pass http://192.168.1.103; include proxy.conf; include /usr/local/nginx/conf/ccbejf.rules; } location ~ /ccbms.*(register|edit_info|userinfo|charge|seconds|index|goods|good|faqs|account_money|account_score|order|exchange|lucknum|login|dhcg).php$ { proxy_pass http://192.168.1.103; include pro ...