Login
Discover
Waves
Communities
Login
Signup
Topics
#virtualenv
Global
Trending
Hot
New
Top
#virtualenv
New
Top communities
Create your community
latest #virtualenv created topics | Ecency
gamer00
Learning Python
2024-10-27 23:06
Published via Ecency
Activate your Python Virtual Environment with ease using Bash scripting!
After having dabbled with Python scripts and constantly having to create and activate the virtual environment again each time creating a new, or accessing an old project, I decided to whip up a...
$ 5.139
329
1
1
oflyhigh
HIVE CN 中文社区
2021-01-22 10:40
每天进步一点点:迁移virtualenv环境
因为工作需要,打算将一台服务器上运行的一组程序迁移到另外一台服务器上。程序运行在virtualenv环境下,正常的方式是在目标服务器上安装设置virtualenv环境、安装依赖库、迁移程序,比较麻烦。 (图源 :pixabay) 于是我就想,既然virtualenv环境下的东西都已经包含在对应目录内,那么我直接把整个目录的内容复制到目标服务器上是否可行了,如果可以,就省事多啦。
$ 27.917
131
jiaxin
python
2018-08-03 08:52
如何正确的使用 virtualenvwrapper
作为一名 Python 开发者。 不会用 **virtualenvwrapper** 我真的只能无语了。 * 安装并激活 ```.shell pip install virtualenvwrapper source /usr/local/bin/virtualenvwrapper.sh echo "source /usr/local/bin/virtualenvwrapper.sh" >>
csgeek
python
2018-05-09 20:47
!
New account with an unverified outbound link, Reveal content
Python + PIP + Django + Virtualenv
For a more through post you probably read this document, this guide was partially based on it, taking what I find relevant for my usecase: Credit: I'm posting this for my own references and if anyone else
asterkame
Hive Diy
2026-07-25 09:43
Published via Ecency
Promoted
DIY Jumping Surprise Gift Box
Hello Everyone! This is a jumping surprise gift box. There is a birthday cake inside the box. It is decorated with flowers. I have been making the necessary things for this one a few days ago. I have painted
marcobasic
python
2018-03-17 11:23
!
New account with an unverified outbound link, Reveal content
The scaring "virtualenv"
Since I’ve tried to use or learn how to use Python, I’ve always heard this scaring word virtualenv (1). My colleagues spoke about it as the key to succeed in using Python. In fact I’ve almost destroyed
snowsprout
develope
2018-03-03 06:29
[Python] Virtualenv 를 이용하여 Python 개발환경 분리하기
Python 관련해서 개발하다보면 환경을 개발 환경을 좀 나눴으면 할때가 있는대요. ( 제 경우 python3, mxnet, tensorflow 를 사용할때 ) Virtualenv 는 이것 을 가능하게 해줍니다. 우선 pip 사용이 가능하다는 전제로 pip install virtualenv 를 통하여virtualenv 를 설치하도록 합니다. $ pip install
chaimyu
cn
2018-02-28 15:32
Mac下pip install Permission denied解决方法
pip install出现 Permission denied 权限问题,在网上找到以下几种方法: brew install Python Chaim:electrum Chaim$ brew install Python Warning: python 2.7.14_3 is already installed, it's just not linked. You can use `brew link
rawoon89
python
2018-02-27 11:19
!
New account with an unverified outbound link, Reveal content
[python] virtualenv, pyenv-virtualenv, autoenv, pyenv
환경 linux ubuntu 환경에서 python, pyenv, virtualenv 등을 이용한 개발 환경 구성 방법과 과정에 대해 포스팅합니다. pyenv 는 python 버전관리 패키지로 원하는 버전에서 개발환경을 구축하기 위해 필요합니다. 단독으로도 쓸 수 있지만 virtualenv를 통해 라이브러리까지 따로 관리 하여 라이브러리끼리의 충돌을 방지합니다.
parkrunmayor
TravelFeed
2026-07-25 10:16
Promoted
Todays parkrun
Met Brad at Scribbly Gums parkrun Scribbly Gums parkrun was my targeted parkrun today to tick off event number 193 for t
isnochys
dev
2018-02-19 07:10
Python with virtualenv
@themarkymark made a good tutorial on setting up Steem-Python for Windows. He only forgot to mention one little thing: Virtualenv What is it Imagine, you have multiple python apps on your server. Some
mucyoung
utopian-io
2018-01-18 08:23
pip bug when installing steem-python in virtualenv
Expected behavior In a virtulenv of python 3.6, steem-python should be installed easily after running 'pip3 install steem'. Then I can use steempy CLI correctly. Actual behavior There is no error in the
burdagay
utopian-io
2018-01-17 15:36
Django (RESTful API) + ReactJS (with Redux) Tutorial: Installing Django with Virtual Env (Part 1)
Source: Django Project The above words couldn't be truer. I couldn't count the instances wherein Django has been a tremendous help. Django is a high-level web framework which was created for quick web
tomshwom
programming
2017-10-26 21:52
Setting Up Python Virtualenv
Preface This is loosely a part 2 to my Getting Started with Bash on Windows post. If you already have a working Python development environment, you can skip that post and continue here. What is a Virtual
siberianwanderer
ASEAN HIVE COMMUNITY
2026-07-25 09:13
Published via Ecency
Promoted
🐢 The turtle's secret...
Hello, Hive community! 🌿 Across different cultures and religions, certain animals hold sacred status. Take cows, for instance—venerated in Hinduism, yet enjoyed as beef across most of the globe. The humble
fabs
python
2017-06-29 08:54
!
New account with an unverified outbound link, Reveal content
python多版本管理
pyenv 介绍 维护不同版本的 Python 一键(命令)切换全局、本地或当前 shell 使用的 Python 版本 安装 // MAC 安装 brew install pyenv 使用 // 查看当前 pyenv 可检测到的所有版本,处于激活状态的版本前以 * 标示 pyenv versions // 查看当前处于激活状态的版本,括号中内容表示这个版本是由哪条途径激活的(global、local、shell)
oflyhigh
bananapi
2017-02-10 12:34
创建虚拟Python环境以及在crontab中运行虚拟Python环境/ Create a virtual Python environment and set virtualenv for a crontab
在前文中我记录了如何安装Python 3.5.3: How to install python 3.5 on Banana-Pi M3 / 如何香蕉派上的安装python 3.5 那么问题来了,系统原来带了Python 3.4.2 以及 Python 2.7.9,现在又多了个 Python 3.5.3 那么运行程序的时候,到底是在哪个环境下啊? 别问我静静是谁,我想静静了! 测试脚本(test.py):