Viewing a response to: @netscape101/re-themarkymark-re-netscape101-re-themarkymark-re-netscape101-re-themarkymark-re-netscape101-re-themarkymark-python-tips-virtual-environments-20180523t191617571z
I haven't used it in a virtualenv environment, but I believe it will read in a .env file. I would recommend removing the virtual env all together, and reinstalling the packages using `pipenv install ...` and it will handle it all. Just make sure you are in the project folder. `pipenv` makes it really easy to uninstall/install modules and will handle adding only modules you need.
author | themarkymark |
---|---|
permlink | re-netscape101-re-themarkymark-re-netscape101-re-themarkymark-re-netscape101-re-themarkymark-re-netscape101-re-themarkymark-python-tips-virtual-environments-20180523t195747212z |
category | programming |
json_metadata | {"tags":["programming"],"app":"steemit/0.1"} |
created | 2018-05-23 19:56:48 |
last_update | 2018-05-23 19:57:21 |
depth | 8 |
children | 2 |
last_payout | 2018-05-30 19:56:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 384 |
author_reputation | 1,777,493,375,863,925 |
root_title | "[Python Tips] Virtual Environments" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,325,616 |
net_rshares | 1,056,440,405 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
netscape101 | 0 | 1,056,440,405 | 100% |
Cool thanks you are right. I see in the documentation here: https://docs.pipenv.org/basics/#importing-from-requirements-txt it says: "If you only have a requirements.txt file available when running pipenv install, pipenv will automatically import the contents of this file and create a Pipfile for you." and it says: "You can also specify $ pipenv install -r path/to/requirements.txt to import a requirements file." and that pretty means you can also install from a file that isn't named requirements.txt also for example: ```pipenv install -r dev-requirements.txt``` Thanks for sharing all the info. Would you mind if I add you on discord?
author | netscape101 |
---|---|
permlink | re-themarkymark-re-netscape101-re-themarkymark-re-netscape101-re-themarkymark-re-netscape101-re-themarkymark-re-netscape101-re-themarkymark-python-tips-virtual-environments-20180524t085942595z |
category | programming |
json_metadata | {"tags":["programming"],"links":["https://docs.pipenv.org/basics/#importing-from-requirements-txt"],"app":"steemit/0.1"} |
created | 2018-05-24 08:59:42 |
last_update | 2018-05-24 08:59:42 |
depth | 9 |
children | 1 |
last_payout | 2018-05-31 08:59:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 641 |
author_reputation | 45,783,947,118 |
root_title | "[Python Tips] Virtual Environments" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,422,255 |
net_rshares | 0 |
I ran into this isssue when I ran: ```$pipenv install -r requirements.txt```: "Unkown locale: UTF-8" and I solved it with this: https://stackoverflow.com/questions/38916461/valueerror-unknown-locale-utf-8-when-importing-pandas-in-python-2-7 I added this to ~/.bash_profile: ``` export=LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 ``` and did: ``` $ source ~/.bash_profile ``` and then this worked: ``` $ pipenv install -r requirements.txt ```
author | netscape101 |
---|---|
permlink | re-netscape101-re-themarkymark-re-netscape101-re-themarkymark-re-netscape101-re-themarkymark-re-netscape101-re-themarkymark-re-netscape101-re-themarkymark-python-tips-virtual-environments-20180524t092521415z |
category | programming |
json_metadata | {"tags":["programming"],"links":["https://stackoverflow.com/questions/38916461/valueerror-unknown-locale-utf-8-when-importing-pandas-in-python-2-7"],"app":"steemit/0.1"} |
created | 2018-05-24 09:25:21 |
last_update | 2018-05-24 09:25:21 |
depth | 10 |
children | 0 |
last_payout | 2018-05-31 09:25:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.116 HBD |
curator_payout_value | 0.037 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 444 |
author_reputation | 45,783,947,118 |
root_title | "[Python Tips] Virtual Environments" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,425,377 |
net_rshares | 41,102,102,658 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thing-2 | 0 | 41,102,102,658 | 100% |