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 | I'll have a list of dynamic bucket sizes and I could have a bucket size that's like 9:30-11:00 | 2019-05-15T11:31:09.241300 | Magdalena | pythondev_help_Magdalena_2019-05-15T11:31:09.241300 | 1,557,919,869.2413 | 23,921 |
pythondev | help | bucket them into a dict, where the keys in the dict are the hour portion, the value a list of times | 2019-05-15T11:31:17.241700 | Clemmie | pythondev_help_Clemmie_2019-05-15T11:31:17.241700 | 1,557,919,877.2417 | 23,922 |
pythondev | help | oh, then you will need to use datetime with timedelta | 2019-05-15T11:31:58.242600 | Clemmie | pythondev_help_Clemmie_2019-05-15T11:31:58.242600 | 1,557,919,918.2426 | 23,923 |
pythondev | help | sorry, should have done a little bit better job of explaining, I'll have a list of bucket start and end times | 2019-05-15T11:31:59.242800 | Magdalena | pythondev_help_Magdalena_2019-05-15T11:31:59.242800 | 1,557,919,919.2428 | 23,924 |
pythondev | help | also your code is trying to do string comparison - that will not be reliable | 2019-05-15T11:32:16.243200 | Clemmie | pythondev_help_Clemmie_2019-05-15T11:32:16.243200 | 1,557,919,936.2432 | 23,925 |
pythondev | help | ^ i was too lazy to write out datetime.time(9, 0) for each one sorry | 2019-05-15T11:32:44.243700 | Magdalena | pythondev_help_Magdalena_2019-05-15T11:32:44.243700 | 1,557,919,964.2437 | 23,926 |
pythondev | help | in my example | 2019-05-15T11:32:57.244000 | Magdalena | pythondev_help_Magdalena_2019-05-15T11:32:57.244000 | 1,557,919,977.244 | 23,927 |
pythondev | help | oh, ok | 2019-05-15T11:32:59.244400 | Clemmie | pythondev_help_Clemmie_2019-05-15T11:32:59.244400 | 1,557,919,979.2444 | 23,928 |
pythondev | help | but I'll be either working with datetime.time or datetime.datetimes | 2019-05-15T11:33:15.245100 | Magdalena | pythondev_help_Magdalena_2019-05-15T11:33:15.245100 | 1,557,919,995.2451 | 23,929 |
pythondev | help | Instead of an if else loop I would make a function that takes in a list of times, a start and end, and returns the list of times that fit in the bucket. then you call the function once for each bucket | 2019-05-15T11:33:40.245600 | Clemmie | pythondev_help_Clemmie_2019-05-15T11:33:40.245600 | 1,557,920,020.2456 | 23,930 |
pythondev | help | and you can have a list of start and end times where each but the first and last is bosth an end/start time, and iterate through the pairs calling the function | 2019-05-15T11:34:09.246300 | Clemmie | pythondev_help_Clemmie_2019-05-15T11:34:09.246300 | 1,557,920,049.2463 | 23,931 |
pythondev | help | collapses the whole thing into about 7 lines of code | 2019-05-15T11:34:29.246700 | Clemmie | pythondev_help_Clemmie_2019-05-15T11:34:29.246700 | 1,557,920,069.2467 | 23,932 |
pythondev | help | Yea, that's kind of what I was thinking, I'll write it out and then post it here and see if there is any way I can improve it | 2019-05-15T11:35:14.247900 | Magdalena | pythondev_help_Magdalena_2019-05-15T11:35:14.247900 | 1,557,920,114.2479 | 23,933 |
pythondev | help | you can also use numpy array slicing with datetime objects, this is how ive done similar things in the past:
```>>> import numpy as np
>>> import datetime
>>> import random
>>>
>>> times = np.array([datetime.time(random.randint(0,23), random.randint(0,59)) for i in range(500)])
>>> times_past_noon = times[times > datetime.time(11, 59)]
>>> times_btwn_noon_and_one = times_past_noon[times_past_noon < datetime.time(13, 0)]
>>> times_btwn_noon_and_one
array([datetime.time(12, 36), datetime.time(12, 49),
datetime.time(12, 49), datetime.time(12, 0), datetime.time(12, 16),
datetime.time(12, 28), datetime.time(12, 13),
datetime.time(12, 58), datetime.time(12, 52),
datetime.time(12, 29), datetime.time(12, 40),
datetime.time(12, 13), datetime.time(12, 34), datetime.time(12, 1),
datetime.time(12, 14), datetime.time(12, 17),
datetime.time(12, 58), datetime.time(12, 30), datetime.time(12, 1)],
dtype=object)``` | 2019-05-15T11:41:15.248900 | Cherish | pythondev_help_Cherish_2019-05-15T11:41:15.248900 | 1,557,920,475.2489 | 23,934 |
pythondev | help | None | 2019-05-15T12:23:51.249000 | Alvina | pythondev_help_Alvina_2019-05-15T12:23:51.249000 | 1,557,923,031.249 | 23,935 |
pythondev | help | if I have several queries being run, can I reuse the cursor or conn? | 2019-05-15T12:24:07.249600 | Alvina | pythondev_help_Alvina_2019-05-15T12:24:07.249600 | 1,557,923,047.2496 | 23,936 |
pythondev | help | for example, I have a query to update some rows in Table A, then later I update rows in Table B | 2019-05-15T12:24:26.250100 | Alvina | pythondev_help_Alvina_2019-05-15T12:24:26.250100 | 1,557,923,066.2501 | 23,937 |
pythondev | help | I want to minimize unnecessary connections to the database | 2019-05-15T12:24:43.250400 | Alvina | pythondev_help_Alvina_2019-05-15T12:24:43.250400 | 1,557,923,083.2504 | 23,938 |
pythondev | help | wtf, 'amount' is a string? | 2019-05-15T12:53:44.250600 | Nenita | pythondev_help_Nenita_2019-05-15T12:53:44.250600 | 1,557,924,824.2506 | 23,939 |
pythondev | help | what is `srip`? | 2019-05-15T12:55:50.251400 | Clemmie | pythondev_help_Clemmie_2019-05-15T12:55:50.251400 | 1,557,924,950.2514 | 23,940 |
pythondev | help | `strip`, not `srip` | 2019-05-15T12:55:52.251500 | Chester | pythondev_help_Chester_2019-05-15T12:55:52.251500 | 1,557,924,952.2515 | 23,941 |
pythondev | help | but strip doesn’t make sense there | 2019-05-15T12:56:01.251900 | Clemmie | pythondev_help_Clemmie_2019-05-15T12:56:01.251900 | 1,557,924,961.2519 | 23,942 |
pythondev | help | lmao :face_palm: | 2019-05-15T12:56:01.252000 | Nenita | pythondev_help_Nenita_2019-05-15T12:56:01.252000 | 1,557,924,961.252 | 23,943 |
pythondev | help | I lied, it does | 2019-05-15T12:56:10.252300 | Clemmie | pythondev_help_Clemmie_2019-05-15T12:56:10.252300 | 1,557,924,970.2523 | 23,944 |
pythondev | help | :parrot: | 2019-05-15T12:56:25.253000 | Chester | pythondev_help_Chester_2019-05-15T12:56:25.253000 | 1,557,924,985.253 | 23,945 |
pythondev | help | didn’t know you could pass arbitrary characters to strip. TIL | 2019-05-15T12:56:26.253100 | Clemmie | pythondev_help_Clemmie_2019-05-15T12:56:26.253100 | 1,557,924,986.2531 | 23,946 |
pythondev | help | BTW, `strip()` only acts are the start and end of the string, so it's unlikely that the commas inside will be removed, if you're working with currency. | 2019-05-15T12:58:15.254000 | Sasha | pythondev_help_Sasha_2019-05-15T12:58:15.254000 | 1,557,925,095.254 | 23,947 |
pythondev | help | So you may need an extra `replace(',', '')` step. | 2019-05-15T12:59:50.254300 | Sasha | pythondev_help_Sasha_2019-05-15T12:59:50.254300 | 1,557,925,190.2543 | 23,948 |
pythondev | help | Same! :slightly_smiling_face: | 2019-05-15T13:08:18.254600 | Marth | pythondev_help_Marth_2019-05-15T13:08:18.254600 | 1,557,925,698.2546 | 23,949 |
pythondev | help | yea i saw that on the references. i did have to use replace as well | 2019-05-15T13:17:28.255200 | Nenita | pythondev_help_Nenita_2019-05-15T13:17:28.255200 | 1,557,926,248.2552 | 23,950 |
pythondev | help | First time poster here. If I wanted to mimick lodash's xor, what would be the easiest way to do that? | 2019-05-15T13:41:36.256600 | Jerlene | pythondev_help_Jerlene_2019-05-15T13:41:36.256600 | 1,557,927,696.2566 | 23,951 |
pythondev | help | maaayyyybe pydash | 2019-05-15T13:44:10.256800 | Holly | pythondev_help_Holly_2019-05-15T13:44:10.256800 | 1,557,927,850.2568 | 23,952 |
pythondev | help | <@Jerlene> ```
>>> l1 = [1, 2]
>>> l2 = [2, 3]
>>> set(l1) ^ set(l2)
{1, 3}
>>> list(_)
[1, 3]
``` | 2019-05-15T13:46:39.257100 | Chester | pythondev_help_Chester_2019-05-15T13:46:39.257100 | 1,557,927,999.2571 | 23,953 |
pythondev | help | Ohhh that works on a set! Awesome. Thank you | 2019-05-15T13:49:01.257600 | Jerlene | pythondev_help_Jerlene_2019-05-15T13:49:01.257600 | 1,557,928,141.2576 | 23,954 |
pythondev | help | Oh nice, didn't even think to look for a python lodash. The guy below you wins this round though for the sheer simplicity | 2019-05-15T13:51:07.259000 | Jerlene | pythondev_help_Jerlene_2019-05-15T13:51:07.259000 | 1,557,928,267.259 | 23,955 |
pythondev | help | no worries; you can't beat simplicity :slightly_smiling_face: | 2019-05-15T13:54:41.259200 | Holly | pythondev_help_Holly_2019-05-15T13:54:41.259200 | 1,557,928,481.2592 | 23,956 |
pythondev | help | I have a few classes setup, where class `C` inherits from class `B`, which inherits from class `A`. When I create an instance of class `C`, I can call and see the successful output of a method `foo` defined in class `A` that it inherited, however there's a `print` statement in `foo`'s definition that doesn't seem to be printing somewhere visible to me, which I was hoping to use for some debugging, any tips on finding that print statement's output? | 2019-05-15T14:19:30.263000 | Cherish | pythondev_help_Cherish_2019-05-15T14:19:30.263000 | 1,557,929,970.263 | 23,957 |
pythondev | help | I'd suspect that the `stdout` from the script is being redirected to a log file somewhere. How is the script being run? | 2019-05-15T14:23:00.263800 | Sasha | pythondev_help_Sasha_2019-05-15T14:23:00.263800 | 1,557,930,180.2638 | 23,958 |
pythondev | help | terminal on a MacBook, I can see the print statement outputs I put in class `C` which I probably should have mentioned, just not class `A` -- this is the first time I've actually used class inheritance, I may be doing something wrong with that so let me see if I can run a quick stripped down version that shows the problem | 2019-05-15T14:24:38.265700 | Cherish | pythondev_help_Cherish_2019-05-15T14:24:38.265700 | 1,557,930,278.2657 | 23,959 |
pythondev | help | Yeah, that's kind of weird. Maybe `foo` is throwing an exception that's getting invisibly caught before it gets to the `print` statement? | 2019-05-15T14:26:55.266400 | Sasha | pythondev_help_Sasha_2019-05-15T14:26:55.266400 | 1,557,930,415.2664 | 23,960 |
pythondev | help | I made the print statement the first line for that reason, and it's getting the correct return values which is why I'm assuming it's running probably, still working on stripping it down to something that reproduces it | 2019-05-15T14:28:17.267700 | Cherish | pythondev_help_Cherish_2019-05-15T14:28:17.267700 | 1,557,930,497.2677 | 23,961 |
pythondev | help | I screwed up and found my mistake, turns out autocompleting a function name to a similar, but slightly different one, will run similar, but different, code :facepalm: | 2019-05-15T14:31:18.269600 | Cherish | pythondev_help_Cherish_2019-05-15T14:31:18.269600 | 1,557,930,678.2696 | 23,962 |
pythondev | help | that took way too long to find | 2019-05-15T14:31:30.269900 | Cherish | pythondev_help_Cherish_2019-05-15T14:31:30.269900 | 1,557,930,690.2699 | 23,963 |
pythondev | help | Has anyone accomplished automating deployment of Python APIs to Windows VMs? If so, could you share the tools you’re using to build/install/deploy the code?
I host many Python APIs in Docker on Linux but recently a need for hosting Python APIs on Windows has come up. Unfortunately we can’t use Docker because the scripts need to run with the servers “host” domain credentials, which is Windows magic that happens under the hood that Docker can’t (that I know of) do yet. | 2019-05-15T16:12:35.277800 | Raleigh | pythondev_help_Raleigh_2019-05-15T16:12:35.277800 | 1,557,936,755.2778 | 23,964 |
pythondev | help | Ansible? | 2019-05-15T16:21:11.277900 | Rolando | pythondev_help_Rolando_2019-05-15T16:21:11.277900 | 1,557,937,271.2779 | 23,965 |
pythondev | help | Ansible + WinRM is definitely going to be used.
How do you setup your Python virtual environment? I’m used to building that stuff as a single artifact (docker image) and deploying that. I was considering zipping up my python directory but I don’t think that works with static paths in venv and libs that need to be compiled.
Don’t like the idea of re-building a virtual environment whenever my code gets promoted to the next environment. | 2019-05-15T16:28:28.278100 | Raleigh | pythondev_help_Raleigh_2019-05-15T16:28:28.278100 | 1,557,937,708.2781 | 23,966 |
pythondev | help | anyone know of a good library or good library components for sending/receiving sip messaging? | 2019-05-15T16:29:52.278700 | Holly | pythondev_help_Holly_2019-05-15T16:29:52.278700 | 1,557,937,792.2787 | 23,967 |
pythondev | help | I’m looking for a good tutorial/book on the design and use of user-defined exception classes. I understand the basic approach to this but need best-practice advice on things like appropriate sub-classing, use of arguments and attributes in exception classes, etc. Any pointers? | 2019-05-15T17:21:27.283200 | Senaida | pythondev_help_Senaida_2019-05-15T17:21:27.283200 | 1,557,940,887.2832 | 23,968 |
pythondev | help | <@Holly> Have you evaluated anything yet? Or are you just trying to figure out what's available? | 2019-05-15T17:24:04.284000 | Carmen | pythondev_help_Carmen_2019-05-15T17:24:04.284000 | 1,557,941,044.284 | 23,969 |
pythondev | help | Hi guys, anyone used <http://locust.io|locust.io> for Web app load testing? | 2019-05-15T17:38:33.285700 | Adela | pythondev_help_Adela_2019-05-15T17:38:33.285700 | 1,557,941,913.2857 | 23,970 |
pythondev | help | we use it at work | 2019-05-15T17:40:15.287500 | Hiroko | pythondev_help_Hiroko_2019-05-15T17:40:15.287500 | 1,557,942,015.2875 | 23,971 |
pythondev | help | Lookin for a similar solution in python. <https://www.redline13.com/blog/2018/01/load-test-with-unique-users/>
I have a partial script ready. Anyone would want to have a look? | 2019-05-15T17:40:28.287800 | Adela | pythondev_help_Adela_2019-05-15T17:40:28.287800 | 1,557,942,028.2878 | 23,972 |
pythondev | help | That's great <@Hiroko> | 2019-05-15T17:41:00.288200 | Adela | pythondev_help_Adela_2019-05-15T17:41:00.288200 | 1,557,942,060.2882 | 23,973 |
pythondev | help | is it possible to configure the flask app as a email receipent? i mean can a SMTP library send an email to an endpoint like "http:localhost:9500/receivingemail", is it possible to send an email to an endpoint like flask? i would like my flask app receive the email and filter the email and do something after the filtering?? | 2019-05-15T20:24:10.290900 | Hai | pythondev_help_Hai_2019-05-15T20:24:10.290900 | 1,557,951,850.2909 | 23,974 |
pythondev | help | I don't think Flask has support for that, but there are various Python libraries which can run an email server. For instance: <https://aiosmtpd.readthedocs.io/en/latest/> | 2019-05-15T20:36:02.291500 | Sasha | pythondev_help_Sasha_2019-05-15T20:36:02.291500 | 1,557,952,562.2915 | 23,975 |
pythondev | help | Alternately, there are Python POP and IMAP libraries for retrieving emails from an already-existing email server. | 2019-05-15T20:39:38.292100 | Sasha | pythondev_help_Sasha_2019-05-15T20:39:38.292100 | 1,557,952,778.2921 | 23,976 |
pythondev | help | <https://www.youtube.com/watch?v=no0qB8CVspY> | 2019-05-16T02:26:50.292900 | Guillermina | pythondev_help_Guillermina_2019-05-16T02:26:50.292900 | 1,557,973,610.2929 | 23,977 |
pythondev | help | Do you have any idea | 2019-05-16T02:43:16.293200 | Harley | pythondev_help_Harley_2019-05-16T02:43:16.293200 | 1,557,974,596.2932 | 23,978 |
pythondev | help | ? | 2019-05-16T02:43:19.293400 | Harley | pythondev_help_Harley_2019-05-16T02:43:19.293400 | 1,557,974,599.2934 | 23,979 |
pythondev | help | What is the 'apple' in `purple.apple` called in javascript? I want to call it a variable, but not sure if that is correct? | 2019-05-16T03:22:56.294600 | Conchita | pythondev_help_Conchita_2019-05-16T03:22:56.294600 | 1,557,976,976.2946 | 23,980 |
pythondev | help | Usually a "property". | 2019-05-16T03:26:59.295300 | Sasha | pythondev_help_Sasha_2019-05-16T03:26:59.295300 | 1,557,977,219.2953 | 23,981 |
pythondev | help | Thanks! | 2019-05-16T03:30:30.295600 | Conchita | pythondev_help_Conchita_2019-05-16T03:30:30.295600 | 1,557,977,430.2956 | 23,982 |
pythondev | help | I think `key` should also work. There's `Object.keys()` method | 2019-05-16T03:35:34.296000 | Chester | pythondev_help_Chester_2019-05-16T03:35:34.296000 | 1,557,977,734.296 | 23,983 |
pythondev | help | Need help scraping a website which has graphql in the url | 2019-05-16T06:09:22.297000 | Malika | pythondev_help_Malika_2019-05-16T06:09:22.297000 | 1,557,986,962.297 | 23,984 |
pythondev | help | need to know the perfect structure of the request | 2019-05-16T06:09:48.297500 | Malika | pythondev_help_Malika_2019-05-16T06:09:48.297500 | 1,557,986,988.2975 | 23,985 |
pythondev | help | Do you happen to have an example of what one the urls would look like? | 2019-05-16T06:12:24.298200 | Madonna | pythondev_help_Madonna_2019-05-16T06:12:24.298200 | 1,557,987,144.2982 | 23,986 |
pythondev | help | I'm parsing HTTPS requests and I need some flexiblity - I need to allow for certain keys to contain value `None` from time to time | 2019-05-16T06:19:32.299600 | Conchita | pythondev_help_Conchita_2019-05-16T06:19:32.299600 | 1,557,987,572.2996 | 23,987 |
pythondev | help | Currently my script breaks if `title = request_json['message']` is `None`. How do I allow for this? | 2019-05-16T06:20:54.299700 | Conchita | pythondev_help_Conchita_2019-05-16T06:20:54.299700 | 1,557,987,654.2997 | 23,988 |
pythondev | help | Assuming that it is blowing up with a `KeyError` should `message` not exist in `request_json`? I would use `get(key, default)` instead of attempting to directly access the potentially non existent key.
E.g.
```
title = request_json.get("message", None)
message = request_json.get("payload", None)
targets = request_json.get("targets", None)
```
This way you get a default value even if the key does not exist, can make the default value whatever you need. | 2019-05-16T06:25:48.301600 | Madonna | pythondev_help_Madonna_2019-05-16T06:25:48.301600 | 1,557,987,948.3016 | 23,989 |
pythondev | help | Hopefully that helps :simple_smile: | 2019-05-16T06:26:51.302100 | Madonna | pythondev_help_Madonna_2019-05-16T06:26:51.302100 | 1,557,988,011.3021 | 23,990 |
pythondev | help | `<http://www.some.com/pdp/graphql|www.some.com/pdp/graphql>`
and it has a query and variable parameter | 2019-05-16T06:42:42.302400 | Malika | pythondev_help_Malika_2019-05-16T06:42:42.302400 | 1,557,988,962.3024 | 23,991 |
pythondev | help | <@Madonna> | 2019-05-16T06:43:01.302600 | Malika | pythondev_help_Malika_2019-05-16T06:43:01.302600 | 1,557,988,981.3026 | 23,992 |
pythondev | help | again query has a query string which uses variable defined in variables parameter | 2019-05-16T06:45:02.302800 | Malika | pythondev_help_Malika_2019-05-16T06:45:02.302800 | 1,557,989,102.3028 | 23,993 |
pythondev | help | any ideas? | 2019-05-16T07:14:49.303100 | Malika | pythondev_help_Malika_2019-05-16T07:14:49.303100 | 1,557,990,889.3031 | 23,994 |
pythondev | help | Sorry, not really sure what to suggest. I would maybe try using requests library for sending the POST request, and pass a dict representing the query to the `params` argument of the `post` method.
Something like this.
```
import requests
url = <http://www.some.com/pdp/graphql|www.some.com/pdp/graphql>
query = {
"query": {"field": "value"}
}
<http://requests.post|requests.post>(url, params=query)
``` | 2019-05-16T07:22:58.303300 | Madonna | pythondev_help_Madonna_2019-05-16T07:22:58.303300 | 1,557,991,378.3033 | 23,995 |
pythondev | help | Not really sure if that would work, I don’t know enough about graphql sorry. | 2019-05-16T07:25:54.303600 | Madonna | pythondev_help_Madonna_2019-05-16T07:25:54.303600 | 1,557,991,554.3036 | 23,996 |
pythondev | help | thanks, but tried that already.. dosen’t seem to work though | 2019-05-16T07:33:49.303800 | Malika | pythondev_help_Malika_2019-05-16T07:33:49.303800 | 1,557,992,029.3038 | 23,997 |
pythondev | help | Does anyone know how to fix problem with conda environment in Mac? | 2019-05-16T08:54:29.305400 | Nella | pythondev_help_Nella_2019-05-16T08:54:29.305400 | 1,557,996,869.3054 | 23,998 |
pythondev | help | I have conda installed but now it’s not working anymore | 2019-05-16T08:54:45.305900 | Nella | pythondev_help_Nella_2019-05-16T08:54:45.305900 | 1,557,996,885.3059 | 23,999 |
pythondev | help | Whenever I tried to use it, it gives `ModuleNotFoundError: No module named 'conda'` | 2019-05-16T08:55:19.306300 | Nella | pythondev_help_Nella_2019-05-16T08:55:19.306300 | 1,557,996,919.3063 | 24,000 |
pythondev | help | Did you install in the base environment? | 2019-05-16T08:57:14.306900 | Bethany | pythondev_help_Bethany_2019-05-16T08:57:14.306900 | 1,557,997,034.3069 | 24,001 |
pythondev | help | I have the environment before and is working just fine. It just broke recently | 2019-05-16T08:57:47.307500 | Nella | pythondev_help_Nella_2019-05-16T08:57:47.307500 | 1,557,997,067.3075 | 24,002 |
pythondev | help | what did you do since that? | 2019-05-16T08:58:10.308000 | Hiroko | pythondev_help_Hiroko_2019-05-16T08:58:10.308000 | 1,557,997,090.308 | 24,003 |
pythondev | help | Should I reinstall it? Or what to do | 2019-05-16T08:58:17.308500 | Nella | pythondev_help_Nella_2019-05-16T08:58:17.308500 | 1,557,997,097.3085 | 24,004 |
pythondev | help | things don’t “just break” :slightly_smiling_face: | 2019-05-16T08:58:19.308700 | Hiroko | pythondev_help_Hiroko_2019-05-16T08:58:19.308700 | 1,557,997,099.3087 | 24,005 |
pythondev | help | I can’t really remember.. | 2019-05-16T08:58:27.308900 | Nella | pythondev_help_Nella_2019-05-16T08:58:27.308900 | 1,557,997,107.3089 | 24,006 |
pythondev | help | I've had this problem recently where conda install into the base environment broke conda | 2019-05-16T08:58:59.309900 | Bethany | pythondev_help_Bethany_2019-05-16T08:58:59.309900 | 1,557,997,139.3099 | 24,007 |
pythondev | help | Like it uninstalled itself | 2019-05-16T08:59:13.310300 | Bethany | pythondev_help_Bethany_2019-05-16T08:59:13.310300 | 1,557,997,153.3103 | 24,008 |
pythondev | help | So I just need to install again? | 2019-05-16T08:59:37.311000 | Nella | pythondev_help_Nella_2019-05-16T08:59:37.311000 | 1,557,997,177.311 | 24,009 |
pythondev | help | But that was by installing an environment file that didn't have it | 2019-05-16T08:59:41.311300 | Bethany | pythondev_help_Bethany_2019-05-16T08:59:41.311300 | 1,557,997,181.3113 | 24,010 |
pythondev | help | Yeah but what did you do to break it? What if you do that again? | 2019-05-16T08:59:55.311800 | Bethany | pythondev_help_Bethany_2019-05-16T08:59:55.311800 | 1,557,997,195.3118 | 24,011 |
pythondev | help | I think I maybe installed something. But I can’y really think of what’s that “something” | 2019-05-16T09:00:47.312400 | Nella | pythondev_help_Nella_2019-05-16T09:00:47.312400 | 1,557,997,247.3124 | 24,012 |
pythondev | help | I saw a few projects on github, but wasn't sure what was really available that others have used before | 2019-05-16T09:26:47.312600 | Holly | pythondev_help_Holly_2019-05-16T09:26:47.312600 | 1,557,998,807.3126 | 24,013 |
pythondev | help | Thanks Lachlan! this did the trick! | 2019-05-16T09:31:24.312900 | Conchita | pythondev_help_Conchita_2019-05-16T09:31:24.312900 | 1,557,999,084.3129 | 24,014 |
pythondev | help | I was caught in something else so didn't see this before now. Thanks for the help! | 2019-05-16T09:31:49.313300 | Conchita | pythondev_help_Conchita_2019-05-16T09:31:49.313300 | 1,557,999,109.3133 | 24,015 |
pythondev | help | I reinstalled anaconda, but still not working :confused: | 2019-05-16T10:09:04.314100 | Nella | pythondev_help_Nella_2019-05-16T10:09:04.314100 | 1,558,001,344.3141 | 24,016 |
pythondev | help | May the problem be that python environment is not properly linked? | 2019-05-16T10:09:45.314700 | Nella | pythondev_help_Nella_2019-05-16T10:09:45.314700 | 1,558,001,385.3147 | 24,017 |
pythondev | help | I see that all the modules are in `/anaconda3/bin`, and `which python` gives me `/anaconda3/bin/python`. But import any package in that path just gives a `ModuleNotFoundError` | 2019-05-16T10:11:07.316000 | Nella | pythondev_help_Nella_2019-05-16T10:11:07.316000 | 1,558,001,467.316 | 24,018 |
pythondev | help | <@Nella> why don't you try to use anaconda in docker. just give it a try | 2019-05-16T10:18:42.317000 | Deloris | pythondev_help_Deloris_2019-05-16T10:18:42.317000 | 1,558,001,922.317 | 24,019 |
pythondev | help | How did you install it | 2019-05-16T10:28:44.317900 | Bethany | pythondev_help_Bethany_2019-05-16T10:28:44.317900 | 1,558,002,524.3179 | 24,020 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.