pip

pygame installation via pip

别来无恙 提交于 2021-02-16 15:20:16
问题 I'm trying to install pygame in my python 2.7. I do it in this python because for some reason if I try to install pip in python 3.7 it won't work. From the terminal I entered: sudo pip install pygame And supposedly I installed it well, but when I try to do the import it tells me: Traceback (most recent call last): File "example.py", line 1, in <module> import pygame ImportError: No module named pygame if i try to do again sudo pip install pygame : Requirement already satisfied: pygame in

Installing downloaded tar.gz files with pip [duplicate]

余生长醉 提交于 2021-02-16 13:20:34
问题 This question already has answers here : How to install Python packages from the tar.gz file without using pip install (7 answers) Closed 1 year ago . When I download PyGUI-2.5.4.tar.gz from http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/ and then run pip install downloads/PyGUI-2.5.4.tar.gz I get a long error, the root of which appears to be the following: tarfile.ReadError: not a gzip file Any ideas what I'm doing wrong? 回答1: You can install tar.gz with pip Install a particular

Installing downloaded tar.gz files with pip [duplicate]

孤者浪人 提交于 2021-02-16 13:16:07
问题 This question already has answers here : How to install Python packages from the tar.gz file without using pip install (7 answers) Closed 1 year ago . When I download PyGUI-2.5.4.tar.gz from http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/ and then run pip install downloads/PyGUI-2.5.4.tar.gz I get a long error, the root of which appears to be the following: tarfile.ReadError: not a gzip file Any ideas what I'm doing wrong? 回答1: You can install tar.gz with pip Install a particular

Could not find a Profile button in tensorboard after install profile-plugin

半城伤御伤魂 提交于 2021-02-16 09:33:37
问题 Tensorboard version: 2.3.0 before I install profile-plugin on Tensorboard: so I followed that order: pip install -U tensorboard-plugin-profile > Successfully installed tensorboard-plugin-profile-2.3.0 and the next time, still find a Profile button in tensorboard I tried to use this URL http://localhost:6006/#profile to open profile but it shows No dashboards are active for the current data set. 回答1: Problem Analysis Your problem sounds like you are using a virtual environment . Probably, you

Could not find a Profile button in tensorboard after install profile-plugin

戏子无情 提交于 2021-02-16 09:33:11
问题 Tensorboard version: 2.3.0 before I install profile-plugin on Tensorboard: so I followed that order: pip install -U tensorboard-plugin-profile > Successfully installed tensorboard-plugin-profile-2.3.0 and the next time, still find a Profile button in tensorboard I tried to use this URL http://localhost:6006/#profile to open profile but it shows No dashboards are active for the current data set. 回答1: Problem Analysis Your problem sounds like you are using a virtual environment . Probably, you

Selenium 2 + JMeter + JDK + Ant + Jenkins集成测试搭建及使用说明

亡梦爱人 提交于 2021-02-16 08:09:56
集成测试搭建及使用说明 目录 1. 环境说明 3 2. 安装Selenium 2 3 2.1 安装python 3 2.2 安装setupTools 3 2.3 安装pip 3 2.5 安装Firefox 4 3. 安装JMeter 4 3.1 安装Selenium IDE 、JMeter插件 4 3.2 录制jmx脚本 5 3.3 在JMeter中测试脚本 5 4. 安装Ant 8 4.1 下载安装Ant环境 8 4.2 配置JMeter和Ant环境 8 4.4 运行脚本 9 4.5 查看报告 10 5. 安装Jenkins 11 5.1 Jenkins下载 11 5.2 Jenkins安装配置 11 5.3 Jenkins插件安装 14 5.3 Jenkins全局工具配置 14 5.4 配置测试Job 15 环境说明 测试机安装环境:Windows 7 64位 测试软件: Selenium 2 + JMeter + JDK + Ant + Jenkins 安装Selenium 2 2.1 安装python 版本为 python2.7.9 (pythhon3.x兼容性和稳定性不够,这里选择python2版本) 1) 下载安装包。 在python官方网站选择下载python2版本的windows安装包:python-2.7.9.amd64.msi 下载地址: https://www

CentOS安装Python3

Deadly 提交于 2021-02-16 08:01:30
安装依赖环境   # yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel 2.下载Python3   <a href="https://www.python.org/downloads/">python下载</a> # wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz 3.安装python3   我个人习惯安装在/usr/local/python3   创建目录: # mkdir -p /usr/local/python3   解压下载好的Python-3.x.x.tgz包(具体包名因你下载的Python具体版本不不同⽽而不不同,如:我下载的是Python3.6.1.那我这里就是Python-3.6.1.tgz) # tar -zxvf Python-3.6.1.tgz 4.进入解压后的目录,编译安装。 # cd Python-3.6.1 # ./configure --prefix=/usr/local/python3 # make # make install 或者

同一个环境同时使用python2和python3的方法

别说谁变了你拦得住时间么 提交于 2021-02-16 02:46:39
1、 首先安装好 p2 和 p3 ,配置好环境变量。在 CMD 内执行 python 返回版本号,返回结果根据配置的环境变量而定,如果 p2 的环境变量配置在前面,则返回 p2 的版本号,反之则 p3 2、 然后把各版本目录下的 python 文件改成 python2 和 python3 ,分别在 CMD 下执行 python2 和 python3 ,返回版本号即全部安装成功 3、 在不同版本的 python 下使用命令也会有不一样,按照原来的执行执行 pip list 的操作受制于 python 名称已经更改无法执行,除非把 python 名称改过来。或者执行 python2 --m pip list 或 python3 --m pip list 使用 pip 。 原来安装的库可能存在不可使用,或者需要把 python2/3 名称改成 python 才可执行 比如安装 python3 以前的 robotframework 是基于 python2 环境安装的, python2 的执行文件 python.exe 改成 python2.exe 后, robotframework 的执行文件 ride.py 即不可使用,这时候把 python2.exe 改成 python.exe 就可以了,或者在 python2.exe 下重新安装,所以一般建议 python2 的 python.exe

机器学习画图神器来啦!PPT下载!

江枫思渺然 提交于 2021-02-16 02:11:52
↑↑↑点击上方 蓝字 ,回复 资料 ,10个G的惊喜 作者:蛋酱、小舟,编辑:机器之心 神经网络画图神器 ML Visuals 正在持续更新。 去年 5 月,机器之心曾向大家推荐一款名为 ML Visuals 的机器学习画图模板,该项目受到广泛关注,迄今已收获 2.2K Star。ML Visuals 专为解决神经网络画图问题设计,最近,这一模板进行了更新。( 文末附PPT下载链接 ) 项目地址:https://github.com/dair-ai/ml-visuals ML Visuals 现在包含了 100 多个可用的自定义图形,使用者可以在任何论文、博客、PPT 中使用这些资源。 这份 101 页的模板共包含几个部分: 基础组件 架构 机器学习概念 抽象背景 渐变背景 机器学习 & 健康 其他 机器学习系统设计 基础组件 这套画图模板首先提供了多种基础组件,比如表示过程、操作或转换的圆角矩形,表示神经元或任意操作的小圆圈,表示向量的一排小方块以及表示多维数组的网格等。 架构 架构部分的模板数量最多,共有 32 张。对于复杂的模型架构来说,套模板显然事半功倍,比亲手画图要便捷得多。 比如,画出卷积操作的示意图: 使用该模板重现一些经典架构也是得心应手,比如下图是使用该模板绘制的 Transformer 架构图: 机器学习概念 该模板还可以用来表示机器学习中的一些基本概念,比如

python3.8安装flask出现错误“ModuleNotFoundError: No module named '_ctypes'”

有些话、适合烂在心里 提交于 2021-02-15 16:56:54
本想在CentOS下配置flask+nginx+uwsgi环境,结果安装最基础的flask包都出了问题...以下是我的环境: 服务器:阿里云ECS CentOS7 python版本:3.8.0 问题描述: 执行命令“ pip3 install flask ”安装flask时,出现如下错误: from _ctypes import Union, Structure, Array ModuleNotFoundError: No module named ' _ctypes' 从错误描述来看是缺少_ctypes模块,根据网上搜索结果,这个错误大多数发生在安装python3.7及以上版本时出现,解决方法如下: 安装python时出此错的解决方法: 原因是缺少包“libffi-devel”,利用yum安装便可 yum install libffi-devel ——参考“ 海棠未满 ” 然而对于我来说,问题并没有解决,我在安装libffi-devel后再次执行pip安装命令仍报同样错误,但大多数人都可以通过上述方法完美解决,这不由得引起我的思考 思考: 我与上述解决方案的不同点在于——我在安装python3.8时并未出现错误,而是在拥有python3.8后,安装flask时出现该错误 受 Bryan 启发,其在安装“libffi-devel”后重新安装了python,解决了问题