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 tried it but I found `network-online.target`
2019-05-06T09:46:37.205800
Elmira
pythondev_help_Elmira_2019-05-06T09:46:37.205800
1,557,135,997.2058
22,221
pythondev
help
And `network-pre.target`
2019-05-06T09:47:14.206400
Elmira
pythondev_help_Elmira_2019-05-06T09:47:14.206400
1,557,136,034.2064
22,222
pythondev
help
are you sure the network is managed via networkmanager? you dont seem to have it installed
2019-05-06T09:50:06.207200
Leida
pythondev_help_Leida_2019-05-06T09:50:06.207200
1,557,136,206.2072
22,223
pythondev
help
How? Do I need to install a network manager after a fresh installation of Ubuntu server?
2019-05-06T09:51:09.208200
Elmira
pythondev_help_Elmira_2019-05-06T09:51:09.208200
1,557,136,269.2082
22,224
pythondev
help
<https://askubuntu.com/questions/842773/ubuntu-server-and-networkmanager>
2019-05-06T09:52:21.208500
Hiroko
pythondev_help_Hiroko_2019-05-06T09:52:21.208500
1,557,136,341.2085
22,225
pythondev
help
doesn’t seem like networkmanager is installed by default on server
2019-05-06T09:52:34.209000
Hiroko
pythondev_help_Hiroko_2019-05-06T09:52:34.209000
1,557,136,354.209
22,226
pythondev
help
A bit of help? In pure python, i have a list of dicts. Each dict has a key `name`. How can i find how many duplicated values of the `name` key exist?
2019-05-06T09:56:24.210400
Talia
pythondev_help_Talia_2019-05-06T09:56:24.210400
1,557,136,584.2104
22,227
pythondev
help
Example code: ```[{'_id': ObjectId('5cd009d5ba4270be3808d0f4'), 'name': 'jegug'}, {'_id': ObjectId('5cd009d9ba4270be3808da68'), 'name': 'nifev', {'_id': ObjectId('5cd009d6ba4270be3808d39d'), 'name': 'tohez'}]```
2019-05-06T09:56:44.210600
Talia
pythondev_help_Talia_2019-05-06T09:56:44.210600
1,557,136,604.2106
22,228
pythondev
help
Do you want to know how many unique names there are, or how many different names are duplicated?
2019-05-06T09:57:18.211100
Clemmie
pythondev_help_Clemmie_2019-05-06T09:57:18.211100
1,557,136,638.2111
22,229
pythondev
help
Actually i want to know, how many similarities there are
2019-05-06T09:57:55.212200
Talia
pythondev_help_Talia_2019-05-06T09:57:55.212200
1,557,136,675.2122
22,230
pythondev
help
so names `[a,b,b, c,c,c]` would be 3 unique names, but 2 duplicated names
2019-05-06T09:57:55.212300
Clemmie
pythondev_help_Clemmie_2019-05-06T09:57:55.212300
1,557,136,675.2123
22,231
pythondev
help
in your list i want to get the number 5
2019-05-06T09:58:26.212700
Talia
pythondev_help_Talia_2019-05-06T09:58:26.212700
1,557,136,706.2127
22,232
pythondev
help
so `[b,b,c,c,c]`?
2019-05-06T09:58:46.213200
Clemmie
pythondev_help_Clemmie_2019-05-06T09:58:46.213200
1,557,136,726.2132
22,233
pythondev
help
ok, let me think for a minute
2019-05-06T09:58:56.213700
Clemmie
pythondev_help_Clemmie_2019-05-06T09:58:56.213700
1,557,136,736.2137
22,234
pythondev
help
just the number 5 is ok, without the list or anything
2019-05-06T09:58:59.213800
Talia
pythondev_help_Talia_2019-05-06T09:58:59.213800
1,557,136,739.2138
22,235
pythondev
help
yeah, I meant that 5 was referring to that list of names
2019-05-06T09:59:17.214300
Clemmie
pythondev_help_Clemmie_2019-05-06T09:59:17.214300
1,557,136,757.2143
22,236
pythondev
help
i tried this one `len(self.person.name) &gt; len(set(self.person.name))` but didnt work
2019-05-06T09:59:26.214500
Talia
pythondev_help_Talia_2019-05-06T09:59:26.214500
1,557,136,766.2145
22,237
pythondev
help
no, that wouldn,t, because you loose the multiple duplicates.
2019-05-06T09:59:52.215100
Clemmie
pythondev_help_Clemmie_2019-05-06T09:59:52.215100
1,557,136,792.2151
22,238
pythondev
help
One minute
2019-05-06T09:59:54.215300
Clemmie
pythondev_help_Clemmie_2019-05-06T09:59:54.215300
1,557,136,794.2153
22,239
pythondev
help
thanks a lot! I’m pretty new in Python, so i’m sorry if i say something weird
2019-05-06T10:00:29.215800
Talia
pythondev_help_Talia_2019-05-06T10:00:29.215800
1,557,136,829.2158
22,240
pythondev
help
None
2019-05-06T10:05:48.216000
Clemmie
pythondev_help_Clemmie_2019-05-06T10:05:48.216000
1,557,137,148.216
22,241
pythondev
help
So, going throuigh this
2019-05-06T10:05:55.216400
Clemmie
pythondev_help_Clemmie_2019-05-06T10:05:55.216400
1,557,137,155.2164
22,242
pythondev
help
`Counter` is a special dict type that maintains a counter as the var for all the keys that it sees. This uses a list comprehension to extract the names out of your dict and instantiate/populate a Counter with them
2019-05-06T10:06:53.217600
Clemmie
pythondev_help_Clemmie_2019-05-06T10:06:53.217600
1,557,137,213.2176
22,243
pythondev
help
Hey all
2019-05-06T10:07:14.218200
Christa
pythondev_help_Christa_2019-05-06T10:07:14.218200
1,557,137,234.2182
22,244
pythondev
help
Then it uses the `sum` function with a list comprehension to sum the list of values (counts) that are greater than 1
2019-05-06T10:07:25.218500
Clemmie
pythondev_help_Clemmie_2019-05-06T10:07:25.218500
1,557,137,245.2185
22,245
pythondev
help
<@Clemmie> thank very very much for your time. I’ll try it out and let you know!
2019-05-06T10:08:22.219900
Talia
pythondev_help_Talia_2019-05-06T10:08:22.219900
1,557,137,302.2199
22,246
pythondev
help
no problem <@Talia> On pyslackers we like to give :taco: to show thanks
2019-05-06T10:09:22.221700
Clemmie
pythondev_help_Clemmie_2019-05-06T10:09:22.221700
1,557,137,362.2217
22,247
pythondev
help
I'm having an issue with a python script in which when i'm asked for input and i enter for example 'this is a test' (no quotes) the string is split into words instead of returning a single string
2019-05-06T10:09:59.222600
Christa
pythondev_help_Christa_2019-05-06T10:09:59.222600
1,557,137,399.2226
22,248
pythondev
help
Enjoy your first one!
2019-05-06T10:10:06.222900
Clemmie
pythondev_help_Clemmie_2019-05-06T10:10:06.222900
1,557,137,406.2229
22,249
pythondev
help
<@Clemmie> :taco: that’s amazing. Thanks again ! :smile:
2019-05-06T10:10:08.223000
Talia
pythondev_help_Talia_2019-05-06T10:10:08.223000
1,557,137,408.223
22,250
pythondev
help
<@Christa> you’ll need to show the code you have written and the errors/difficulties you are seeing - use the snippet feature or backticks for the code
2019-05-06T10:11:22.224300
Clemmie
pythondev_help_Clemmie_2019-05-06T10:11:22.224300
1,557,137,482.2243
22,251
pythondev
help
Ok, gimme a sec
2019-05-06T10:12:44.224500
Christa
pythondev_help_Christa_2019-05-06T10:12:44.224500
1,557,137,564.2245
22,252
pythondev
help
Please use the snippet feature, or backticks, when sharing code. You can do so by clicking on the :heavy_plus_sign: on the left of the input box for a snippet. For more information on snippets click <https://get.slack.help/hc/en-us/articles/204145658-Create-a-snippet|here>. For more information on inline code formatting with backticks click <https://get.slack.help/hc/en-us/articles/202288908-Format-your-messages#inline-code|here>.
2019-05-06T10:13:03.224600
Leana
pythondev_help_Leana_2019-05-06T10:13:03.224600
1,557,137,583.2246
22,253
pythondev
help
This code is in a script called console.py:
2019-05-06T10:15:44.225100
Christa
pythondev_help_Christa_2019-05-06T10:15:44.225100
1,557,137,744.2251
22,254
pythondev
help
None
2019-05-06T10:18:37.225200
Christa
pythondev_help_Christa_2019-05-06T10:18:37.225200
1,557,137,917.2252
22,255
pythondev
help
None
2019-05-06T10:24:22.226100
Christa
pythondev_help_Christa_2019-05-06T10:24:22.226100
1,557,138,262.2261
22,256
pythondev
help
The problem is if i enter a string with whitespace the value of cmd is interpreted as 'this'
2019-05-06T10:25:38.227600
Christa
pythondev_help_Christa_2019-05-06T10:25:38.227600
1,557,138,338.2276
22,257
pythondev
help
'this' 'is' 'a' 'test'
2019-05-06T10:25:57.227900
Christa
pythondev_help_Christa_2019-05-06T10:25:57.227900
1,557,138,357.2279
22,258
pythondev
help
instead of 'this is a test'
2019-05-06T10:26:07.228200
Christa
pythondev_help_Christa_2019-05-06T10:26:07.228200
1,557,138,367.2282
22,259
pythondev
help
have you maybe tried .join? <@Christa>
2019-05-06T11:20:58.228700
Nenita
pythondev_help_Nenita_2019-05-06T11:20:58.228700
1,557,141,658.2287
22,260
pythondev
help
<@Christa> I'm somewhat confused, since there doesn't seem to be anything in your code which would produce that result. Have you edited out some lines of code which might be doing other stuff to the `user_input` variable?
2019-05-06T12:56:59.231000
Sasha
pythondev_help_Sasha_2019-05-06T12:56:59.231000
1,557,147,419.231
22,261
pythondev
help
Also that `try/except` block as written is unnecessary
2019-05-06T13:04:52.231600
Clemmie
pythondev_help_Clemmie_2019-05-06T13:04:52.231600
1,557,147,892.2316
22,262
pythondev
help
Can you show an example? The `\W` should already be removing quotes within the string.
2019-05-06T13:10:02.232300
Sasha
pythondev_help_Sasha_2019-05-06T13:10:02.232300
1,557,148,202.2323
22,263
pythondev
help
This run perfect upon start up. However if i copy and paste this into a new file and run it, i get an error saying too many values to unpack (expected 1). wth?
2019-05-06T14:08:38.232600
Nenita
pythondev_help_Nenita_2019-05-06T14:08:38.232600
1,557,151,718.2326
22,264
pythondev
help
you are going to get all sorts of problems with that `dict` being a name
2019-05-06T14:09:31.233200
Clemmie
pythondev_help_Clemmie_2019-05-06T14:09:31.233200
1,557,151,771.2332
22,265
pythondev
help
<@Nenita> tl’dr don’t use `list`, `dict`, `set`, etc for variable names
2019-05-06T14:10:31.234100
Hiroko
pythondev_help_Hiroko_2019-05-06T14:10:31.234100
1,557,151,831.2341
22,266
pythondev
help
and how are you running it?
2019-05-06T14:10:34.234200
Clemmie
pythondev_help_Clemmie_2019-05-06T14:10:34.234200
1,557,151,834.2342
22,267
pythondev
help
as written that will load but not execute
2019-05-06T14:10:46.234600
Clemmie
pythondev_help_Clemmie_2019-05-06T14:10:46.234600
1,557,151,846.2346
22,268
pythondev
help
you forgot the `self` parameter
2019-05-06T14:10:48.234800
Damien
pythondev_help_Damien_2019-05-06T14:10:48.234800
1,557,151,848.2348
22,269
pythondev
help
^
2019-05-06T14:10:58.235100
Clemmie
pythondev_help_Clemmie_2019-05-06T14:10:58.235100
1,557,151,858.2351
22,270
pythondev
help
yea, dict is called from a function but ill be changing along with so much more, but atm setting to this is what causes the error.
2019-05-06T14:10:59.235200
Nenita
pythondev_help_Nenita_2019-05-06T14:10:59.235200
1,557,151,859.2352
22,271
pythondev
help
that isn't even a valid block of code
2019-05-06T14:12:10.236600
Damien
pythondev_help_Damien_2019-05-06T14:12:10.236600
1,557,151,930.2366
22,272
pythondev
help
while you can do `x = y = z` I don’t think that is what you are meaning to do
2019-05-06T14:12:11.236900
Clemmie
pythondev_help_Clemmie_2019-05-06T14:12:11.236900
1,557,151,931.2369
22,273
pythondev
help
you can't assign to a list
2019-05-06T14:12:21.237400
Damien
pythondev_help_Damien_2019-05-06T14:12:21.237400
1,557,151,941.2374
22,274
pythondev
help
^ beat me to it
2019-05-06T14:12:27.237700
Clemmie
pythondev_help_Clemmie_2019-05-06T14:12:27.237700
1,557,151,947.2377
22,275
pythondev
help
I think you want `mydict[data['Customer Code']]` without the equals.
2019-05-06T14:12:30.237900
Sasha
pythondev_help_Sasha_2019-05-06T14:12:30.237900
1,557,151,950.2379
22,276
pythondev
help
ahh! i see where i went wrong
2019-05-06T14:12:46.238300
Nenita
pythondev_help_Nenita_2019-05-06T14:12:46.238300
1,557,151,966.2383
22,277
pythondev
help
my_dict[data]
2019-05-06T14:12:55.238600
Nenita
pythondev_help_Nenita_2019-05-06T14:12:55.238600
1,557,151,975.2386
22,278
pythondev
help
duh
2019-05-06T14:12:58.238800
Nenita
pythondev_help_Nenita_2019-05-06T14:12:58.238800
1,557,151,978.2388
22,279
pythondev
help
i hate it when i miss simple things
2019-05-06T14:13:33.239500
Nenita
pythondev_help_Nenita_2019-05-06T14:13:33.239500
1,557,152,013.2395
22,280
pythondev
help
nm
2019-05-06T14:13:43.239900
Clemmie
pythondev_help_Clemmie_2019-05-06T14:13:43.239900
1,557,152,023.2399
22,281
pythondev
help
sorry to bother about something so simple. thanks
2019-05-06T14:13:58.240300
Nenita
pythondev_help_Nenita_2019-05-06T14:13:58.240300
1,557,152,038.2403
22,282
pythondev
help
what kind of casing is proper/preferred for dictionary keys?
2019-05-06T14:30:18.240800
Nenita
pythondev_help_Nenita_2019-05-06T14:30:18.240800
1,557,153,018.2408
22,283
pythondev
help
is all the keys come from code, lower, with underscores for words
2019-05-06T14:31:43.241300
Damien
pythondev_help_Damien_2019-05-06T14:31:43.241300
1,557,153,103.2413
22,284
pythondev
help
basically, `snake_case`
2019-05-06T14:33:07.241600
Hiroko
pythondev_help_Hiroko_2019-05-06T14:33:07.241600
1,557,153,187.2416
22,285
pythondev
help
thank. was having a hard time finding that answer believe it or not
2019-05-06T14:37:46.242100
Nenita
pythondev_help_Nenita_2019-05-06T14:37:46.242100
1,557,153,466.2421
22,286
pythondev
help
Hey how do i pass multiple arguments to a executer map function ``` with concurrent.futures.ProcessPoolExecutor(max_workers=PROCESSES) as executor: processResult = executor.map(do_multithreading, (data_pools, a, b)) def do_multithreading(d, a, b): ```
2019-05-06T14:57:29.243000
Pura
pythondev_help_Pura_2019-05-06T14:57:29.243000
1,557,154,649.243
22,287
pythondev
help
It looks like you want an iterable for each function argument, like `map(func, [1, 2, 3], [x, y, z], ...)`.
2019-05-06T15:08:42.244400
Sasha
pythondev_help_Sasha_2019-05-06T15:08:42.244400
1,557,155,322.2444
22,288
pythondev
help
I'm having an issue decoding bytes at the moment; I'm reading data from an aws kinesis stream and its giving me data back in bytes, when I try to decode it I get `can't decode byte 0x8b: invalid start byte` that means its compressed in someway I think, but I'm not sure how to decompress something like that on the fly that's not in a file
2019-05-06T16:24:37.246800
Holly
pythondev_help_Holly_2019-05-06T16:24:37.246800
1,557,159,877.2468
22,289
pythondev
help
what’s your consumer?
2019-05-06T16:26:52.247200
Hiroko
pythondev_help_Hiroko_2019-05-06T16:26:52.247200
1,557,160,012.2472
22,290
pythondev
help
a python script basically, I'm dropping cloudwatch logs into the stream then reading them off with an endless while loop
2019-05-06T16:27:15.247600
Holly
pythondev_help_Holly_2019-05-06T16:27:15.247600
1,557,160,035.2476
22,291
pythondev
help
that just iterates repeatedly over the next shard
2019-05-06T16:27:24.247900
Holly
pythondev_help_Holly_2019-05-06T16:27:24.247900
1,557,160,044.2479
22,292
pythondev
help
just not sure how to get around that bad byte
2019-05-06T16:33:13.248100
Holly
pythondev_help_Holly_2019-05-06T16:33:13.248100
1,557,160,393.2481
22,293
pythondev
help
tried using bytes io then reading it into a textiowrapper but I'm getting the same error, also tried using gzip and it errors out as well, quite a conundrum
2019-05-06T16:44:34.249100
Holly
pythondev_help_Holly_2019-05-06T16:44:34.249100
1,557,161,074.2491
22,294
pythondev
help
<@Holly> do you know the data encoding?
2019-05-06T18:06:16.250300
Gemma
pythondev_help_Gemma_2019-05-06T18:06:16.250300
1,557,165,976.2503
22,295
pythondev
help
Firstly, I would try to get the encoding if possible from which you can supply `.decode()` with an `encoding=blahblah` argument. You can also supply an `errors=ignore`, which will skip over bad bytes and from this you may be able to get a sense for what the encoding is.
2019-05-06T18:11:06.253100
Gemma
pythondev_help_Gemma_2019-05-06T18:11:06.253100
1,557,166,266.2531
22,296
pythondev
help
anyone here already worked with AWS Lambda and MQTT?
2019-05-06T20:23:32.253600
Agustin
pythondev_help_Agustin_2019-05-06T20:23:32.253600
1,557,174,212.2536
22,297
pythondev
help
If you have a question, please just ask it. Please do not ask for topic experts; do not DM or ping random users. We cannot begin to answer a question until we actually get a question. <http://sol.gfxile.net/dontask.html|*Asking Questions*>
2019-05-06T20:27:03.253700
Leana
pythondev_help_Leana_2019-05-06T20:27:03.253700
1,557,174,423.2537
22,298
pythondev
help
Hi, friends. Apologies if this is too basic of a question. Started learning to code with Think Python and fell in love with it, but wound up getting hired for a devops role in a Ruby house. Only now, after two years, looping back around to my first love, and have what's probably an entry-level question:
2019-05-06T20:56:26.255600
Ann
pythondev_help_Ann_2019-05-06T20:56:26.255600
1,557,176,186.2556
22,299
pythondev
help
```class Hexacopter: MIN_MOTOR_SPEED = 0 MAX_MOTOR_SPEED = 500 def __init__(self): self._motor_speed = self.__class__.MIN_MOTOR_SPEED self._is_turned_on = False @property def motor_speed(self): return self._motor_speed ```
2019-05-06T20:56:31.255800
Ann
pythondev_help_Ann_2019-05-06T20:56:31.255800
1,557,176,191.2558
22,300
pythondev
help
Why is there an `_` before motor_speed?
2019-05-06T20:56:47.256200
Ann
pythondev_help_Ann_2019-05-06T20:56:47.256200
1,557,176,207.2562
22,301
pythondev
help
Wondering if the opening underrscore is an established convention or just arbritrary
2019-05-06T20:59:39.257100
Ann
pythondev_help_Ann_2019-05-06T20:59:39.257100
1,557,176,379.2571
22,302
pythondev
help
Also, I guess in a similar vein, any suggestions on good resources to very quickly bootstrap some python OOR knowledge would be greatly appreciated
2019-05-06T21:00:34.257800
Ann
pythondev_help_Ann_2019-05-06T21:00:34.257800
1,557,176,434.2578
22,303
pythondev
help
from memory (and i may be wrong) the _ before the variable means that its private and cant be accessed externally without a get method. I tihnk :stuck_out_tongue:
2019-05-06T21:08:01.258800
Mildred
pythondev_help_Mildred_2019-05-06T21:08:01.258800
1,557,176,881.2588
22,304
pythondev
help
Yep, though it's just a convention. Nothing enforces it, but it's considered a warning to anyone who uses a library that they shouldn't be relying on those variables / functions or messing with them.
2019-05-06T21:10:51.259800
Sasha
pythondev_help_Sasha_2019-05-06T21:10:51.259800
1,557,177,051.2598
22,305
pythondev
help
what is the 'heytaco' under
2019-05-06T21:37:40.260400
Priscilla
pythondev_help_Priscilla_2019-05-06T21:37:40.260400
1,557,178,660.2604
22,306
pythondev
help
'Apps'??
2019-05-06T21:37:47.260700
Priscilla
pythondev_help_Priscilla_2019-05-06T21:37:47.260700
1,557,178,667.2607
22,307
pythondev
help
It is an app, but not really under anything. If you give or get one you will get a DM from heytaco
2019-05-06T21:44:21.261700
Clemmie
pythondev_help_Clemmie_2019-05-06T21:44:21.261700
1,557,179,061.2617
22,308
pythondev
help
I was working with pymesh normally, and today when I tried to run the file again I got this error ``` Traceback (most recent call last): File "/home/roaa/anaconda3/lib/python3.6/site-packages/pymesh2-0.1.14-py3.6-linux-x86_64.egg/pymesh/swig/PyMesh.py", line 14, in swig_import_helper return importlib.import_module(mname) File "/home/roaa/anaconda3/lib/python3.6/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "&lt;frozen importlib._bootstrap&gt;", line 994, in _gcd_import File "&lt;frozen importlib._bootstrap&gt;", line 971, in _find_and_load File "&lt;frozen importlib._bootstrap&gt;", line 953, in _find_and_load_unlocked ModuleNotFoundError: No module named '_PyMesh' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "&lt;string&gt;", line 1, in &lt;module&gt; File "/home/roaa/anaconda3/lib/python3.6/site-packages/pymesh2-0.1.14-py3.6-linux-x86_64.egg/pymesh/__init__.py", line 18, in &lt;module&gt; from .Mesh import Mesh File "/home/roaa/anaconda3/lib/python3.6/site-packages/pymesh2-0.1.14-py3.6-linux-x86_64.egg/pymesh/Mesh.py", line 5, in &lt;module&gt; import PyMesh File "/home/roaa/anaconda3/lib/python3.6/site-packages/pymesh2-0.1.14-py3.6-linux-x86_64.egg/pymesh/swig/PyMesh.py", line 17, in &lt;module&gt; _PyMesh = swig_import_helper() File "/home/roaa/anaconda3/lib/python3.6/site-packages/pymesh2-0.1.14-py3.6-linux-x86_64.egg/pymesh/swig/PyMesh.py", line 16, in swig_import_helper return importlib.import_module('_PyMesh') File "/home/roaa/anaconda3/lib/python3.6/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFoundError: No module named '_PyMesh' ```
2019-05-07T05:25:54.265500
Tanja
pythondev_help_Tanja_2019-05-07T05:25:54.265500
1,557,206,754.2655
22,309
pythondev
help
did you update any of the packages?
2019-05-07T05:39:02.265800
Mica
pythondev_help_Mica_2019-05-07T05:39:02.265800
1,557,207,542.2658
22,310
pythondev
help
or are you using your venv?
2019-05-07T05:39:15.266000
Mica
pythondev_help_Mica_2019-05-07T05:39:15.266000
1,557,207,555.266
22,311
pythondev
help
yes I did update, since I installed antother libraries
2019-05-07T05:41:40.266500
Tanja
pythondev_help_Tanja_2019-05-07T05:41:40.266500
1,557,207,700.2665
22,312
pythondev
help
<@Tanja> there are tons of similar issues on pymesh github
2019-05-07T05:43:10.267100
Chester
pythondev_help_Chester_2019-05-07T05:43:10.267100
1,557,207,790.2671
22,313
pythondev
help
but the problem is that it was working normally
2019-05-07T05:43:56.267600
Tanja
pythondev_help_Tanja_2019-05-07T05:43:56.267600
1,557,207,836.2676
22,314
pythondev
help
¯\_(ツ)_/¯
2019-05-07T05:44:40.267800
Chester
pythondev_help_Chester_2019-05-07T05:44:40.267800
1,557,207,880.2678
22,315
pythondev
help
possibly an issue with versioning
2019-05-07T06:24:14.268200
Mica
pythondev_help_Mica_2019-05-07T06:24:14.268200
1,557,210,254.2682
22,316
pythondev
help
check to see what the old versions were and downgrade
2019-05-07T06:24:23.268500
Mica
pythondev_help_Mica_2019-05-07T06:24:23.268500
1,557,210,263.2685
22,317
pythondev
help
then pin those version numbers
2019-05-07T06:24:29.268700
Mica
pythondev_help_Mica_2019-05-07T06:24:29.268700
1,557,210,269.2687
22,318
pythondev
help
Thank you <@Mildred> and <@Sasha> :clap:
2019-05-07T09:24:37.269500
Ann
pythondev_help_Ann_2019-05-07T09:24:37.269500
1,557,221,077.2695
22,319
pythondev
help
ah man, relative import doing my head in again. I have the following folder structure ``` app/facenet/src/... app/facenet/align/... app/src/application.py ``` im trying to import from facenet/src/ and facenet/align/ into /src/application.py but i keep failing
2019-05-07T09:56:13.271600
Leida
pythondev_help_Leida_2019-05-07T09:56:13.271600
1,557,222,973.2716
22,320