workspace
stringclasses 1
value | channel
stringclasses 1
value | sentences
stringlengths 1
3.93k
| ts
stringlengths 26
26
| user
stringlengths 2
11
| sentence_id
stringlengths 44
53
| timestamp
float64 1.5B
1.56B
| __index_level_0__
int64 0
106k
|
---|---|---|---|---|---|---|---|
pythondev | help | before recompiling | 2017-06-16T14:31:53.028688 | Johnathon | pythondev_help_Johnathon_2017-06-16T14:31:53.028688 | 1,497,623,513.028688 | 82,203 |
pythondev | help | apologies if I'm asking in the wrong channel, I didn't find one for pip issues | 2017-06-16T14:39:36.181847 | Johnathon | pythondev_help_Johnathon_2017-06-16T14:39:36.181847 | 1,497,623,976.181847 | 82,204 |
pythondev | help | help is a good channel to ask in n/w. | 2017-06-16T14:40:26.198233 | Johana | pythondev_help_Johana_2017-06-16T14:40:26.198233 | 1,497,624,026.198233 | 82,205 |
pythondev | help | did you install your package with `-e`? | 2017-06-16T14:44:34.280101 | Johana | pythondev_help_Johana_2017-06-16T14:44:34.280101 | 1,497,624,274.280101 | 82,206 |
pythondev | help | `pip install -e "path/to/package"` | 2017-06-16T14:44:51.285770 | Johana | pythondev_help_Johana_2017-06-16T14:44:51.285770 | 1,497,624,291.28577 | 82,207 |
pythondev | help | <@Johana> no | 2017-06-16T14:47:46.343855 | Johnathon | pythondev_help_Johnathon_2017-06-16T14:47:46.343855 | 1,497,624,466.343855 | 82,208 |
pythondev | help | just `pip install mypackage` | 2017-06-16T14:48:11.352214 | Johnathon | pythondev_help_Johnathon_2017-06-16T14:48:11.352214 | 1,497,624,491.352214 | 82,209 |
pythondev | help | that would be your issue | 2017-06-16T14:48:13.352834 | Johana | pythondev_help_Johana_2017-06-16T14:48:13.352834 | 1,497,624,493.352834 | 82,210 |
pythondev | help | -e allows it to be editable | 2017-06-16T14:48:19.355109 | Johana | pythondev_help_Johana_2017-06-16T14:48:19.355109 | 1,497,624,499.355109 | 82,211 |
pythondev | help | it creates symlinks to where your package exists to the site-packages dir so that you can edit the files and see the changes. | 2017-06-16T14:48:55.367115 | Johana | pythondev_help_Johana_2017-06-16T14:48:55.367115 | 1,497,624,535.367115 | 82,212 |
pythondev | help | hmm | 2017-06-16T14:49:12.372421 | Johnathon | pythondev_help_Johnathon_2017-06-16T14:49:12.372421 | 1,497,624,552.372421 | 82,213 |
pythondev | help | so I need to reinstall it | 2017-06-16T14:49:15.373394 | Johnathon | pythondev_help_Johnathon_2017-06-16T14:49:15.373394 | 1,497,624,555.373394 | 82,214 |
pythondev | help | you can install it again on top (i think). | 2017-06-16T14:49:59.388056 | Johana | pythondev_help_Johana_2017-06-16T14:49:59.388056 | 1,497,624,599.388056 | 82,215 |
pythondev | help | but it’s probably safer to uninstall first | 2017-06-16T14:50:12.392440 | Johana | pythondev_help_Johana_2017-06-16T14:50:12.392440 | 1,497,624,612.39244 | 82,216 |
pythondev | help | okay | 2017-06-16T14:50:24.396579 | Johnathon | pythondev_help_Johnathon_2017-06-16T14:50:24.396579 | 1,497,624,624.396579 | 82,217 |
pythondev | help | `mypackage should either be a path to a local project or a VCS url beginning with svn+, git+, hg+, or bzr+` | 2017-06-16T14:53:25.456731 | Johnathon | pythondev_help_Johnathon_2017-06-16T14:53:25.456731 | 1,497,624,805.456731 | 82,218 |
pythondev | help | is it local? | 2017-06-16T14:53:44.462885 | Johana | pythondev_help_Johana_2017-06-16T14:53:44.462885 | 1,497,624,824.462885 | 82,219 |
pythondev | help | no | 2017-06-16T14:54:20.475203 | Johnathon | pythondev_help_Johnathon_2017-06-16T14:54:20.475203 | 1,497,624,860.475203 | 82,220 |
pythondev | help | hmmm.. this package is on pypi? | 2017-06-16T14:55:28.497320 | Johana | pythondev_help_Johana_2017-06-16T14:55:28.497320 | 1,497,624,928.49732 | 82,221 |
pythondev | help | you’re going to want a local copy of whatever package this is. if you are editing it and expecting to see the changes. | 2017-06-16T14:55:50.504637 | Johana | pythondev_help_Johana_2017-06-16T14:55:50.504637 | 1,497,624,950.504637 | 82,222 |
pythondev | help | for example lets say this is my project dir.
```
|--- requests
|--- my_awesome_app
``` | 2017-06-16T14:57:31.538030 | Johana | pythondev_help_Johana_2017-06-16T14:57:31.538030 | 1,497,625,051.53803 | 82,223 |
pythondev | help | these are two python packages. requests has been cloned down from github but i would like to edit it separately and see the changes in `my_awesome_app` | 2017-06-16T14:58:07.550251 | Johana | pythondev_help_Johana_2017-06-16T14:58:07.550251 | 1,497,625,087.550251 | 82,224 |
pythondev | help | i would go into the `my_awesome_app` dir and activate the virtualenv. | 2017-06-16T14:58:29.557761 | Johana | pythondev_help_Johana_2017-06-16T14:58:29.557761 | 1,497,625,109.557761 | 82,225 |
pythondev | help | then type `pip install -e "../requests"` | 2017-06-16T14:58:48.564247 | Johana | pythondev_help_Johana_2017-06-16T14:58:48.564247 | 1,497,625,128.564247 | 82,226 |
pythondev | help | virtualenv? | 2017-06-16T15:00:14.594016 | Johnathon | pythondev_help_Johnathon_2017-06-16T15:00:14.594016 | 1,497,625,214.594016 | 82,227 |
pythondev | help | uuuh let me see if I can figure something out by cloning the repo | 2017-06-16T15:00:41.604200 | Johnathon | pythondev_help_Johnathon_2017-06-16T15:00:41.604200 | 1,497,625,241.6042 | 82,228 |
pythondev | help | yes, a virtualenv is short for “virtual environment” it basically makes a copy of your python binaries and places them in a separate location (again using symlinks). This separate location acts as an isolated environment in which you install dependencies/packages. What you gain from this is the ability to only have the packages and package versions you need for that particular project. | 2017-06-16T15:02:43.644995 | Johana | pythondev_help_Johana_2017-06-16T15:02:43.644995 | 1,497,625,363.644995 | 82,229 |
pythondev | help | if you are using python3 it comes with virtualenv capabillity | 2017-06-16T15:03:49.666411 | Johana | pythondev_help_Johana_2017-06-16T15:03:49.666411 | 1,497,625,429.666411 | 82,230 |
pythondev | help | does `pip install` look for any particular file? | 2017-06-16T15:04:40.683049 | Johnathon | pythondev_help_Johnathon_2017-06-16T15:04:40.683049 | 1,497,625,480.683049 | 82,231 |
pythondev | help | pip install will be looking for a `setup.py` file in the root of the package. | 2017-06-16T15:04:56.687729 | Johana | pythondev_help_Johana_2017-06-16T15:04:56.687729 | 1,497,625,496.687729 | 82,232 |
pythondev | help | great | 2017-06-16T15:05:12.692882 | Johnathon | pythondev_help_Johnathon_2017-06-16T15:05:12.692882 | 1,497,625,512.692882 | 82,233 |
pythondev | help | I think I got this | 2017-06-16T15:05:15.693595 | Johnathon | pythondev_help_Johnathon_2017-06-16T15:05:15.693595 | 1,497,625,515.693595 | 82,234 |
pythondev | help | :thumbsup: | 2017-06-16T15:05:51.705221 | Johana | pythondev_help_Johana_2017-06-16T15:05:51.705221 | 1,497,625,551.705221 | 82,235 |
pythondev | help | it takes a bit to get used to. virtualenvs, pip, and so forth but once you get the process down it will be second nature. | 2017-06-16T15:06:58.726057 | Johana | pythondev_help_Johana_2017-06-16T15:06:58.726057 | 1,497,625,618.726057 | 82,236 |
pythondev | help | and once you start working with multiple projects with different requirements/dependencies and even python versions you’ll see why this extra stuff exists. | 2017-06-16T15:07:31.736467 | Johana | pythondev_help_Johana_2017-06-16T15:07:31.736467 | 1,497,625,651.736467 | 82,237 |
pythondev | help | hey it worked! | 2017-06-16T15:08:36.755996 | Johnathon | pythondev_help_Johnathon_2017-06-16T15:08:36.755996 | 1,497,625,716.755996 | 82,238 |
pythondev | help | the important thing is to try and start using these practices early on so that they become habit as they are typically used by python developers. | 2017-06-16T15:08:39.757023 | Johana | pythondev_help_Johana_2017-06-16T15:08:39.757023 | 1,497,625,719.757023 | 82,239 |
pythondev | help | it actually really works! | 2017-06-16T15:26:53.079587 | Johnathon | pythondev_help_Johnathon_2017-06-16T15:26:53.079587 | 1,497,626,813.079587 | 82,240 |
pythondev | help | this is going to be my first pull request | 2017-06-16T15:27:14.085581 | Johnathon | pythondev_help_Johnathon_2017-06-16T15:27:14.085581 | 1,497,626,834.085581 | 82,241 |
pythondev | help | thank you so much <@Johana> | 2017-06-16T15:27:18.086938 | Johnathon | pythondev_help_Johnathon_2017-06-16T15:27:18.086938 | 1,497,626,838.086938 | 82,242 |
pythondev | help | that’s fantastic. i’m glad i could help. | 2017-06-16T15:27:45.095365 | Johana | pythondev_help_Johana_2017-06-16T15:27:45.095365 | 1,497,626,865.095365 | 82,243 |
pythondev | help | Does anyone have a pro tip for freeing up disk space on a SSD? | 2017-06-16T17:34:35.178224 | Winnifred | pythondev_help_Winnifred_2017-06-16T17:34:35.178224 | 1,497,634,475.178224 | 82,244 |
pythondev | help | links | 2017-06-16T17:35:10.185740 | Ciera | pythondev_help_Ciera_2017-06-16T17:35:10.185740 | 1,497,634,510.18574 | 82,245 |
pythondev | help | `rm -rf /` | 2017-06-16T17:35:18.187577 | Beula | pythondev_help_Beula_2017-06-16T17:35:18.187577 | 1,497,634,518.187577 | 82,246 |
pythondev | help | BleachBit | 2017-06-16T17:54:52.428129 | Suellen | pythondev_help_Suellen_2017-06-16T17:54:52.428129 | 1,497,635,692.428129 | 82,247 |
pythondev | help | and ZFS | 2017-06-16T17:55:17.433072 | Suellen | pythondev_help_Suellen_2017-06-16T17:55:17.433072 | 1,497,635,717.433072 | 82,248 |
pythondev | help | (compression is freeing space, right?) | 2017-06-16T17:55:29.435318 | Suellen | pythondev_help_Suellen_2017-06-16T17:55:29.435318 | 1,497,635,729.435318 | 82,249 |
pythondev | help | Depends on what OS, but on mac there is a diskutility thing that is used to erase free space, I have seen that reclaim a bit. Also cleaning up a docker cache, if you use docker | 2017-06-16T17:56:18.444833 | Beula | pythondev_help_Beula_2017-06-16T17:56:18.444833 | 1,497,635,778.444833 | 82,250 |
pythondev | help | I want to use setattr inside a class’s init method. Should I use it on `self` or `self.__dict__` ? | 2017-06-17T01:48:00.696199 | Reda | pythondev_help_Reda_2017-06-17T01:48:00.696199 | 1,497,664,080.696199 | 82,251 |
pythondev | help | Hey guys for my django web app I'm trying to figure out why my page went from working to a page not found error. It's saying:
Page not found (404) Request Method: GET Request URL: .... Using the URLconf defined in EMC_site.urls, Django tried these URL patterns, in this order: $queue_system/ $admin/ The empty path didn't match any of these. You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.
but it WAS JUST WORKING. I didn't change any code just came home from school. I found that the interpreter was no longer set to python 3.6, it wasn't set to anything so I'm wondering if other things may have changed? Thanks for any help! I'm hoping it is a commonly known problem if something is just working and then starts to give you this error if you come one and off wifi or something. Another one of my projects happens to be having the same problem. I also tried typing /admin or /queue_system after the web address too. Neither worked. | 2017-06-17T02:49:27.844244 | Natividad | pythondev_help_Natividad_2017-06-17T02:49:27.844244 | 1,497,667,767.844244 | 82,252 |
pythondev | help | <@Reda>
```
>>> class A:
... def __init__(self):
... setattr(self, 'a', 5)
...
>>> a = A()
>>> vars(a)
{'a': 5}
>>> ``` | 2017-06-17T05:11:52.202896 | Suellen | pythondev_help_Suellen_2017-06-17T05:11:52.202896 | 1,497,676,312.202896 | 82,253 |
pythondev | help | <@Natividad> are you running it in a virtual env? | 2017-06-17T06:58:32.470014 | Alvin | pythondev_help_Alvin_2017-06-17T06:58:32.470014 | 1,497,682,712.470014 | 82,254 |
pythondev | help | Can you edit an active/open excel doc in python? | 2017-06-17T11:59:23.442483 | Staci | pythondev_help_Staci_2017-06-17T11:59:23.442483 | 1,497,700,763.442483 | 82,255 |
pythondev | help | whats the use case? | 2017-06-17T12:00:57.450978 | Meg | pythondev_help_Meg_2017-06-17T12:00:57.450978 | 1,497,700,857.450978 | 82,256 |
pythondev | help | you could, but changes wouldn't be replicated | 2017-06-17T12:01:11.452026 | Meg | pythondev_help_Meg_2017-06-17T12:01:11.452026 | 1,497,700,871.452026 | 82,257 |
pythondev | help | and trying to keep changes in sync between the excel program and the python program would be a headache | 2017-06-17T12:01:43.454125 | Meg | pythondev_help_Meg_2017-06-17T12:01:43.454125 | 1,497,700,903.454125 | 82,258 |
pythondev | help | so, I'd say this is something that you could do in theory, but I'd not bother | 2017-06-17T12:02:00.455358 | Meg | pythondev_help_Meg_2017-06-17T12:02:00.455358 | 1,497,700,920.455358 | 82,259 |
pythondev | help | Yea, I have a client who wants to add rows to a work sheet as he makes selections and I assume he'd like the worksheet open to see the changes. I told him I could just do it in vba but he'd rather have a separate:face_with_rolling_eyes: program apparently. | 2017-06-17T12:03:50.462817 | Staci | pythondev_help_Staci_2017-06-17T12:03:50.462817 | 1,497,701,030.462817 | 82,260 |
pythondev | help | How would I go about it, if he insists? | 2017-06-17T12:04:17.464628 | Staci | pythondev_help_Staci_2017-06-17T12:04:17.464628 | 1,497,701,057.464628 | 82,261 |
pythondev | help | I thought you'd run into the same issue as having a workbook open by two different people at the same time | 2017-06-17T12:04:46.466559 | Staci | pythondev_help_Staci_2017-06-17T12:04:46.466559 | 1,497,701,086.466559 | 82,262 |
pythondev | help | <@Staci>, I think it’s possible with A LOT of work. I don’t know if there are libraries in Python that actually allow you to open and edit without saving a new version. You can copy an existing workbook, make changes and save that one over the old one. | 2017-06-17T12:10:17.488424 | Winnifred | pythondev_help_Winnifred_2017-06-17T12:10:17.488424 | 1,497,701,417.488424 | 82,263 |
pythondev | help | google docs :slightly_smiling_face: | 2017-06-17T12:10:33.489602 | Meg | pythondev_help_Meg_2017-06-17T12:10:33.489602 | 1,497,701,433.489602 | 82,264 |
pythondev | help | <@Meg>, my thoughts exactly | 2017-06-17T12:10:50.490703 | Winnifred | pythondev_help_Winnifred_2017-06-17T12:10:50.490703 | 1,497,701,450.490703 | 82,265 |
pythondev | help | or office 365 | 2017-06-17T12:10:54.490945 | Meg | pythondev_help_Meg_2017-06-17T12:10:54.490945 | 1,497,701,454.490945 | 82,266 |
pythondev | help | those already have collaboration built into them | 2017-06-17T12:11:10.491964 | Meg | pythondev_help_Meg_2017-06-17T12:11:10.491964 | 1,497,701,470.491964 | 82,267 |
pythondev | help | why re-invent the wheel | 2017-06-17T12:11:15.492230 | Meg | pythondev_help_Meg_2017-06-17T12:11:15.492230 | 1,497,701,475.49223 | 82,268 |
pythondev | help | and end up handing the client a 10K bill for development time | 2017-06-17T12:11:35.493628 | Meg | pythondev_help_Meg_2017-06-17T12:11:35.493628 | 1,497,701,495.493628 | 82,269 |
pythondev | help | haha | 2017-06-17T12:11:42.494050 | Winnifred | pythondev_help_Winnifred_2017-06-17T12:11:42.494050 | 1,497,701,502.49405 | 82,270 |
pythondev | help | <@Staci>, if you’re still keen ~to~ on trying, the best library i’ve seen so far for pretty formatting/excel writing is <http://xlsxwriter.readthedocs.io/> | 2017-06-17T12:13:25.500774 | Winnifred | pythondev_help_Winnifred_2017-06-17T12:13:25.500774 | 1,497,701,605.500774 | 82,271 |
pythondev | help | Actually, I remember pywin32 can do stuff with Excel documents. | 2017-06-17T12:14:50.506276 | Suellen | pythondev_help_Suellen_2017-06-17T12:14:50.506276 | 1,497,701,690.506276 | 82,272 |
pythondev | help | And bonus: you *can* access already opened documents | 2017-06-17T12:15:11.507883 | Suellen | pythondev_help_Suellen_2017-06-17T12:15:11.507883 | 1,497,701,711.507883 | 82,273 |
pythondev | help | But that's crazy of course. | 2017-06-17T12:15:17.508270 | Suellen | pythondev_help_Suellen_2017-06-17T12:15:17.508270 | 1,497,701,717.50827 | 82,274 |
pythondev | help | Yea, I've worked with excel before, but never on an open document. | 2017-06-17T12:16:42.513838 | Staci | pythondev_help_Staci_2017-06-17T12:16:42.513838 | 1,497,701,802.513838 | 82,275 |
pythondev | help | <@Staci> I have done something similar by feeding the worksheet live data and cells update automatically as new data comes in. But I used excel dev tools. I dont think one can edit an open excel sheet otherwise. | 2017-06-17T23:39:00.611201 | Alvin | pythondev_help_Alvin_2017-06-17T23:39:00.611201 | 1,497,742,740.611201 | 82,276 |
pythondev | help | yeah the only real live option is to write some awful VBA glue in the excel to speak to something external via python | 2017-06-18T01:38:14.880624 | Marcie | pythondev_help_Marcie_2017-06-18T01:38:14.880624 | 1,497,749,894.880624 | 82,277 |
pythondev | help | it's my eternal hope that they at least put in some sort of c# or powershell automation into excel at some point but I've been hoping for like 10 years now :( | 2017-06-18T01:39:44.883388 | Marcie | pythondev_help_Marcie_2017-06-18T01:39:44.883388 | 1,497,749,984.883388 | 82,278 |
pythondev | help | hi folks, i got trouble while trying pandas, how to slice a dataframe using Int64Index?
I’m search an index base on value ```id = df.loc[df['time'] ==1496587067]``` Then I got an `Index` object `id`, I want to get 10 elms before that index. Which way I should go? | 2017-06-18T03:09:16.067893 | Hermina | pythondev_help_Hermina_2017-06-18T03:09:16.067893 | 1,497,755,356.067893 | 82,279 |
pythondev | help | <@Winnifred> not exactly. xlsxwriter is only for creating and writing to excel files. It can't open and read from existing files | 2017-06-18T06:11:04.503479 | Meg | pythondev_help_Meg_2017-06-18T06:11:04.503479 | 1,497,766,264.503479 | 82,280 |
pythondev | help | right there at the top of the FAQ <http://xlsxwriter.readthedocs.io/faq.html> | 2017-06-18T06:11:47.505301 | Meg | pythondev_help_Meg_2017-06-18T06:11:47.505301 | 1,497,766,307.505301 | 82,281 |
pythondev | help | >>>Can XlsxWriter use an existing Excel file as a template?
No.
XlsxWriter is designed only as a file writer. It cannot read or modify an existing Excel file. | 2017-06-18T06:12:15.506366 | Meg | pythondev_help_Meg_2017-06-18T06:12:15.506366 | 1,497,766,335.506366 | 82,282 |
pythondev | help | how do I get an elastic IP to my ec2 instance? the instance is already running and when I click on it’s description. It’s empty | 2017-06-18T08:45:28.896655 | Gabrielle | pythondev_help_Gabrielle_2017-06-18T08:45:28.896655 | 1,497,775,528.896655 | 82,283 |
pythondev | help | before a user account can be created in my app it checks whether someone with the same username exists, and then whether someone with the same email has already registered, as both of these are supposed to be unique. Do I really need to check these individually? I know the insert query will fail if the values aren't unique since the columns are set to `unique`, but is there a way to know _which_ one caused the error, so that for example I can tell the user whether their username is taken or whether their email address is already registered. | 2017-06-18T09:07:50.962804 | Thomasina | pythondev_help_Thomasina_2017-06-18T09:07:50.962804 | 1,497,776,870.962804 | 82,284 |
pythondev | help | <@Thomasina> your DB will throw an Integrity error with the name of the field in the message. So you can probably parse that one to find out. It could be easier if you are using some ORM but I am not sure. | 2017-06-18T09:13:02.978147 | See | pythondev_help_See_2017-06-18T09:13:02.978147 | 1,497,777,182.978147 | 82,285 |
pythondev | help | <@Hermina> Hi. How about this snippet:
```
import pandas as pd
l_num = [num for num in range(10)]
df = pd.DataFrame({
'num': l_num
}, columns=['num'])
l_id = df.loc[df['num'] == 5]
first_match_id = l_id.index.get_values()[0]
print(df[first_match_id - 5:first_match_id])
``` | 2017-06-18T09:25:14.012824 | Mirna | pythondev_help_Mirna_2017-06-18T09:25:14.012824 | 1,497,777,914.012824 | 82,286 |
pythondev | help | <@Reda> Just use self | 2017-06-18T09:25:27.013390 | Mariano | pythondev_help_Mariano_2017-06-18T09:25:27.013390 | 1,497,777,927.01339 | 82,287 |
pythondev | help | Thanks, I thought there will be a shorter way rather than get the Int index, and slice it with int type :slightly_smiling_face: | 2017-06-18T09:51:30.089911 | Hermina | pythondev_help_Hermina_2017-06-18T09:51:30.089911 | 1,497,779,490.089911 | 82,288 |
pythondev | help | Base on your conditional. It may has many matches id. So i think this maybe the shortest way :slightly_smiling_face:. | 2017-06-18T10:02:55.127199 | Mirna | pythondev_help_Mirna_2017-06-18T10:02:55.127199 | 1,497,780,175.127199 | 82,289 |
pythondev | help | <@Meg> yep, agreed. I mentioned open and edit wasn’t possible in my first comment (at least with the popular python excel libs). | 2017-06-18T11:30:07.422501 | Winnifred | pythondev_help_Winnifred_2017-06-18T11:30:07.422501 | 1,497,785,407.422501 | 82,290 |
pythondev | help | hey team, soz for a really noob question, i use python 3.6 but need 3.5 in order to use one the libraries, what shall i do? :grimacing:
i thought that virtualenv has to be helpful but i'm stuck somehow :( | 2017-06-18T11:46:34.479472 | Corrine | pythondev_help_Corrine_2017-06-18T11:46:34.479472 | 1,497,786,394.479472 | 82,291 |
pythondev | help | What breaking changes keep the library from working with 3.6? I can't think of any from the changelog | 2017-06-18T12:01:18.531351 | Beula | pythondev_help_Beula_2017-06-18T12:01:18.531351 | 1,497,787,278.531351 | 82,292 |
pythondev | help | hey <@Beula> thnx for your response, apparently mysql-connector doesn't work on 3.6 | 2017-06-18T12:05:48.547424 | Corrine | pythondev_help_Corrine_2017-06-18T12:05:48.547424 | 1,497,787,548.547424 | 82,293 |
pythondev | help | Follow this: <http://python-guide-pt-br.readthedocs.io/en/latest/dev/virtualenvs/> | 2017-06-18T12:06:13.548711 | Deann | pythondev_help_Deann_2017-06-18T12:06:13.548711 | 1,497,787,573.548711 | 82,294 |
pythondev | help | where it says: export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python2.7 | 2017-06-18T12:06:25.549416 | Deann | pythondev_help_Deann_2017-06-18T12:06:25.549416 | 1,497,787,585.549416 | 82,295 |
pythondev | help | use this command: export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3.5 | 2017-06-18T12:06:33.549837 | Deann | pythondev_help_Deann_2017-06-18T12:06:33.549837 | 1,497,787,593.549837 | 82,296 |
pythondev | help | then activate the virtual enviroment with source my_project/bin/activate | 2017-06-18T12:06:52.551064 | Deann | pythondev_help_Deann_2017-06-18T12:06:52.551064 | 1,497,787,612.551064 | 82,297 |
pythondev | help | Did you try it <@Corrine> or is that just what the docs say. There isn't any reason it shouldn't unless they depend on dicts being unordered or something like that. | 2017-06-18T12:07:08.552095 | Beula | pythondev_help_Beula_2017-06-18T12:07:08.552095 | 1,497,787,628.552095 | 82,298 |
pythondev | help | yeap I’ve tried it | 2017-06-18T12:07:20.552812 | Corrine | pythondev_help_Corrine_2017-06-18T12:07:20.552812 | 1,497,787,640.552812 | 82,299 |
pythondev | help | (Note that you can change the name "my_project" to anything else you want to write as the name of your virtual enviroment) | 2017-06-18T12:07:26.553165 | Deann | pythondev_help_Deann_2017-06-18T12:07:26.553165 | 1,497,787,646.553165 | 82,300 |
pythondev | help | What's the error? In any case, <@Deann> 's solution should work if you have python 3.5 installed | 2017-06-18T12:07:56.554721 | Beula | pythondev_help_Beula_2017-06-18T12:07:56.554721 | 1,497,787,676.554721 | 82,301 |
pythondev | help | I'd probably use `which python3.5` so it grabs which is in your path (for example on osx it's probably at /usr/local/bin | 2017-06-18T12:09:36.560670 | Beula | pythondev_help_Beula_2017-06-18T12:09:36.560670 | 1,497,787,776.56067 | 82,302 |