Three (3) >>> in the debug screen of PyCharm... Que Es over?!!

2023-05-04 Thread Kevin M. Wilson via Python-list
"When you pass through the waters, I will be with you: and when you pass through the rivers, they will not sweep over you. When you walk through the fire, you will not be burned: the flames will not set you ablaze."      Isaiah 43:2 | | Virus-free.www.avg.com | --

Re: Pycharm IDE

2023-04-20 Thread Thomas Passin
On 4/19/2023 7:48 PM, dn via Python-list wrote: On 20/04/2023 08.59, Thomas Passin wrote: On 4/19/2023 4:06 PM, Mark Bourne wrote: print(f'{LIMIT}) ^ I think this one should be: print(f'{LIMIT}') with the closing quote ;o) Yup a typo!  Where's pylint when I need it? but (and you

Re: Pycharm IDE

2023-04-19 Thread dn via Python-list
On 20/04/2023 08.59, Thomas Passin wrote: On 4/19/2023 4:06 PM, Mark Bourne wrote: print(f'{LIMIT}) ^ I think this one should be: print(f'{LIMIT}') with the closing quote ;o) Yup a typo!  Where's pylint when I need it? but (and you designed it this way - right?) an excellent

Re: Pycharm IDE

2023-04-19 Thread Thomas Passin
On 4/19/2023 4:06 PM, Mark Bourne wrote: print(f'{LIMIT}) ^ I think this one should be: print(f'{LIMIT}') with the closing quote ;o) Yup a typo! Where's pylint when I need it? -- https://mail.python.org/mailman/listinfo/python-list

Re: Pycharm IDE

2023-04-19 Thread Mark Bourne
ings at the same time here. 1. These errors originate from syntax errors.  They are basically Python errors.  It's possible that behind the scenes, PyCharm is running one or another Python program to detect them, but they are errors in your Python code. 2. print() doesn't care whether you give

Re: Pycharm IDE

2023-04-19 Thread Thomas Passin
me time here. 1. These errors originate from syntax errors. They are basically Python errors. It's possible that behind the scenes, PyCharm is running one or another Python program to detect them, but they are errors in your Python code. 2. print() doesn't care whether you give it an f-stri

Re: Pycharm IDE

2023-04-19 Thread dn via Python-list
On 19/04/2023 21.13, Kevin M. Wilson wrote: Sorry the code snippet I sent was what is written in PyCharm. LIMIT is defined and is not causing an error! PyCharm is flagging the Parentheses at the end. It is not seeing the Parentheses as the end of the print function. def play_game(): number

Re: Pycharm IDE

2023-04-19 Thread dn via Python-list
into our PyCharm software and see what is happening!) There still appears to be both an apostrophe (') and quotation-marks ("). Do you want the user to see one/both? There was mention of this being an input prompt - hence the question-mark. Are you aware that this could be done as

Re: Pycharm IDE

2023-04-18 Thread Kevin M. Wilson via Python-list
Ok, I got rid of the "print (f'"I am thinking of a number between 1 to {LIMIT}\n")"print ("I am thinking of a number between 1 to {LIMIT}\n"), and Pycharm stopped complaining about it... WHY?? Perplexed "When you pass through the waters, I will be with you: an

Re: Pycharm IDE

2023-04-18 Thread Kevin M. Wilson via Python-list
print (f'"I am thinking of a number between 1 to {LIMIT}\n")I had the impression that the format specifier 'f' was necessary for the print function, but the double quotes are for the string printed to the user, as a prompt!The Pycharm IDE is showing that it expects a single quot

Re: Pycharm IDE

2023-04-18 Thread aapost
On 4/18/23 19:18, Kevin M. Wilson wrote: Why complain about a 'comma', or a ')'??? print (f'"I am thinking of a number between 1 to {LIMIT}\n") my version says it expects ' first (to close the fstring) then on a new line below it, it mentions the comma and ) I believe that is just showing

Re: Pycharm IDE

2023-04-18 Thread Thomas Passin
On 4/18/2023 7:18 PM, Kevin M. Wilson via Python-list wrote: Greetings... Kevin here:I need help, as you have guessed!I have this line: The Print Statement... Why complain about a 'comma', or a ')'???def play_game(): number = random.randint(1, LIMIT) print (f'"I am thinking of a

Re: Pycharm IDE

2023-04-18 Thread dn via Python-list
On 19/04/2023 11.18, Kevin M. Wilson via Python-list wrote: Greetings... Kevin here:I need help, as you have guessed!I have this line: The Print Statement... Why complain about a 'comma', or a ')'???def play_game(): number = random.randint(1, LIMIT) print (f'"I am thinking of a number

Pycharm IDE

2023-04-18 Thread Kevin M. Wilson via Python-list
Greetings... Kevin here:I need help, as you have guessed!I have this line: The Print Statement... Why complain about a 'comma', or a ')'???def play_game(): number = random.randint(1, LIMIT) print (f'"I am thinking of a number between 1 to {LIMIT}\n")Or is this a setting in the IDE, I

Re: Typing Number, PyCharm

2023-02-06 Thread Weatherby,Gerard
l-type And the Decimal definition I’m finding says: class Decimal(object): yet print(issubclass(Decimal,Number)) returns True. From: Paul Bryan Date: Monday, February 6, 2023 at 9:25 AM To: Weatherby,Gerard , dn , 'Python' Subject: Re: Typing Number, PyCharm *** Attention: This is an external emai

Re: Typing Number, PyCharm

2023-02-06 Thread Paul Bryan
I had to add # noinspection PyTypeChecker to 2 * > value to keep PyCharm from complaining. Additionally, it does not > include the Decimal type. Hmm... Python 3.10.9 (main, Dec 19 2022, 17:35:49) [GCC 12.2.0] on linux Type "help", "copyright", "credits" or "license&

Re: Typing Number, PyCharm

2023-02-06 Thread Weatherby,Gerard
for the implementation; I had to add # noinspection PyTypeChecker to 2 * value to keep PyCharm from complaining. Additionally, it does not include the Decimal type. Interestingly, It was added in 2007 in anticipation of “if and when overloading based on types is added to the language.” This now

Re: Typing Number, PyCharm

2023-02-05 Thread dn via Python-list
No @Gerard, YOU weren't missing anything: since posting, have upgraded PyCharm to 2022.3.2 and the complaints about 'Method 5' have disappeared. Evidently a PyCharm issue! Which alters the top-line question to: is numbers.Number the preferred type-hint when multiple numeric types

Re: Typing Number, PyCharm

2023-02-05 Thread Weatherby,Gerard
dn, I’m missing something here. Method 5 seems to work fine in PyCharm. I’m interpreting your statement as: from fractions import Fraction from numbers import Number def double(value: Number): if isinstance(value, Number): # noinspection PyTypeChecker return 2 * value

Typing Number, PyCharm

2023-02-04 Thread dn via Python-list
Number ... def fun( value:Number ): Each of these will execute correctly. All cause PyCharm to object if I try to call the fun(ction) with a string parameter - and execute an exception, as expected. Accepting all the others, am curious as to why PyCharm objects to Method 5 with "Expected

Re: Help, PyCharm fails to recognize my tab setting...See attached picture of the code.

2022-10-11 Thread dn
On 11/10/2022 10.48, Kevin M. Wilson via Python-list wrote: C:\Users\kevin\PycharmProjects\Myfuturevalue\venv\Scripts\python.exe C:\Users\kevin\PycharmProjects\Myfuturevalue\FutureValueCal.py   File "C:\Users\kevin\PycharmProjects\Myfuturevalue\FutureValueCal.py", line 31    elif (years >

Help, PyCharm fails to recognize my tab setting...See attached picture of the code.

2022-10-10 Thread Kevin M. Wilson via Python-list
C:\Users\kevin\PycharmProjects\Myfuturevalue\venv\Scripts\python.exe C:\Users\kevin\PycharmProjects\Myfuturevalue\FutureValueCal.py   File "C:\Users\kevin\PycharmProjects\Myfuturevalue\FutureValueCal.py", line 31    elif (years > 50.0) or (years < 1.0) :    ^IndentationError: expected an

Re: pycharm issue

2022-06-17 Thread dn
On 18/06/2022 11.21, Giorgos Poriotis wrote: > I use windows 10 , I click on a shortcut of the pycharm , the icon that > runs the programm Please reply to the list - there are many people here who know more than I, and can help you with MS-Windows issues. Please review https://docs.python

Re: pycharm issue

2022-06-17 Thread dn
On 18/06/2022 10.52, GIORGOS PORIOTIS wrote: > > Hello i have an issue with my pycharm latest edition, it doesnt take the > files in the pycharm window , when i click on > > them , also intead of the pycharm picture on my py files i have the idle > picture ... This list

pycharm issue

2022-06-17 Thread GIORGOS PORIOTIS
> Hello i have an issue with my pycharm latest edition, it doesnt take the files in the pycharm window , when i click on > them , also intead of the pycharm picture on my py files i have the idle picture ... -- https://mail.python.org/mailman/listinfo/python-list

Re: Pycharm IDE: seeking an assist!

2022-03-21 Thread Dennis Lee Bieber
On Mon, 21 Mar 2022 15:36:50 + (UTC), "Kevin M. Wilson" declaimed the following: >The use of Java options environment variables detected. >Such variables override IDE configuration files (*.vmoptions) and may cause >performance and stability issues. >Please consider deleting these

Pycharm IDE: seeking an assist!

2022-03-21 Thread Kevin M. Wilson via Python-list
Greetings Python coders,     I have installed the Pycharm IDE, and upon successfully auto install of the path/environment statements. The IDE opened and displayed (bottom right corner):  The use of Java options environment variables detected. Such variables override IDE configuration

Re: PyCharm settings - per: print('\N{flag: Mauritius}') not supported in py3.9

2021-12-21 Thread Abdur-Rahmaan Janhangeer
Yet another unicode issue XD Kind Regards, Abdur-Rahmaan Janhangeer about | blog github Mauritius -- https://mail.python.org/mailman/listinfo/python-list

PyCharm settings - per: print('\N{flag: Mauritius}') not supported in py3.9

2021-12-01 Thread dn via Python-list
e Font Viewer shows: Emoji One Noto Color Emoji Twemoji - don't ask me the why/when/where of Twemoji - the other two were added via dnf (yum) today Neither shows in PyCharm's drop-down list of choices - even after stop/start (which doesn't appear strictly necessary, per above, but...). Performed:

Re: Get a function definition/implementation hint similar to the one shown in pycharm.

2021-10-19 Thread Chris Angelico
On Wed, Oct 20, 2021 at 4:45 AM hongy...@gmail.com wrote: > > On Tuesday, October 19, 2021 at 5:22:25 AM UTC+8, cameron...@gmail.com wrote: > > On 18Oct2021 01:43, Hongyi Zhao wrote: > > >I've written the following python code snippet in pycharm: > > >```python >

Re: Get a function definition/implementation hint similar to the one shown in pycharm.

2021-10-19 Thread hongy...@gmail.com
On Tuesday, October 19, 2021 at 5:22:25 AM UTC+8, cameron...@gmail.com wrote: > On 18Oct2021 01:43, Hongyi Zhao wrote: > >I've written the following python code snippet in pycharm: > >```python > >import numpy as np > >from numpy import pi, sin > >

Re: Get a function definition/implementation hint similar to the one shown in pycharm.

2021-10-18 Thread hongy...@gmail.com
On Tuesday, October 19, 2021 at 5:22:25 AM UTC+8, cameron...@gmail.com wrote: > On 18Oct2021 01:43, Hongyi Zhao wrote: > >I've written the following python code snippet in pycharm: > >```python > >import numpy as np > >from numpy import pi, sin > >

Re: Get a function definition/implementation hint similar to the one shown in pycharm.

2021-10-18 Thread Cameron Simpson
On 18Oct2021 01:43, Hongyi Zhao wrote: >I've written the following python code snippet in pycharm: >```python >import numpy as np >from numpy import pi, sin > >a = np.array([1], dtype=bool) >if np.in|vert(a) == ~a: >print('ok') >``` >When putting the point/cu

Get a function definition/implementation hint similar to the one shown in pycharm.

2021-10-18 Thread hongy...@gmail.com
I've written the following python code snippet in pycharm: ```python import numpy as np from numpy import pi, sin a = np.array([1], dtype=bool) if np.in|vert(a) == ~a: print('ok') ``` When putting the point/cursor in the above code snippet at the position denoted by `|`, I would like to see

Re: Flush / update GUIs in PyQt5 during debugging in PyCharm

2021-09-26 Thread Mohsen Owzar
and > > their states as well. > > Because my program doesn't function correctly, I try to debug it in my IDE > > (PyCharm). > > The problem is that during debugging, when I change some attributes of a > > button or label, let say its background-color, I can not see

Re: Flush / update GUIs in PyQt5 during debugging in PyCharm

2021-09-24 Thread DFS
IDE (PyCharm). The problem is that during debugging, when I change some attributes of a button or label, let say its background-color, I can not see this modification of the color until the whole method or function is completed. I believe that I have seen somewhere during my searches and googling

Flush / update GUIs in PyQt5 during debugging in PyCharm

2021-09-23 Thread Mohsen Owzar
Hi Guys I've written a GUI using PyQt5 and in there I use StyleSheets (css) for the buttons and labels to change their background- and foreground-colors and their states as well. Because my program doesn't function correctly, I try to debug it in my IDE (PyCharm). The problem is that during

Re: for the installation of pycharm

2021-05-08 Thread Jason C. McDonald
You might try their official website. A casual web search will bring it up for you. Just type "pycharm" into your favorite search engine. On 2021-05-08, wrote: >Sir/madam, > >Please provide me the latest version of pycharm quickly. > >Samir Mishra > &g

Re: for the installation of pycharm

2021-05-08 Thread Richard Damon
On 5/8/21 10:49 AM, mishrasamir2...@gmail.com wrote: >Sir/madam, > >Please provide me the latest version of pycharm quickly. > >Samir Mishra You just need to go to the jetbrains web site and it is available there. They even have a free version there. -- Richard D

for the installation of pycharm

2021-05-08 Thread mishrasamir2004
Sir/madam, Please provide me the latest version of pycharm quickly. Samir Mishra Sent from [1]Mail for Windows 10 References Visible links 1. https://go.microsoft.com/fwlink/?LinkId=550986 -- https://mail.python.org/mailman/listinfo/python-list

Does anyone know if there Is a 'Code Snippet' add-in for PyCharm

2021-02-25 Thread DonK
Thank you Don -- https://mail.python.org/mailman/listinfo/python-list

Re: FW: Pycharm Won't Do Long Underscore

2020-07-02 Thread Michael Torrie
g >>> concept. >> >> I've never heard of that before. I'd be curious to try one. >> > > I've been using this one, and I like it: > https://github.com/tonsky/FiraCode > https://www.fontsquirrel.com/fonts/fira-code > > Works well with PyCharm. Hm

Re: FW: Pycharm Won't Do Long Underscore

2020-07-02 Thread Danilo Coccia
that you use one. >> >> I agree. Although there are some fonts with special ligatures for >> programming. I have never used one, but that seems like an interesting >> concept. > > I've never heard of that before. I'd be curious to try one. > I've been using this one, and

Re: Pycharm Won't Do Long Underscore

2020-06-30 Thread Random832
On Wed, Jun 24, 2020, at 21:38, Grant Edwards wrote: > On 2020-06-24, Peter J. Holzer wrote: > > > There is U+FF3F Fullwidth Low Line. > > > >> If there were, Python would not know what to do with it > > > > You can use it in variable names, but not at the beginning, and it isn't > > equivalent

Re: FW: Pycharm Won't Do Long Underscore

2020-06-30 Thread Joe Pfeiffer
"Peter J. Holzer" writes: > On 2020-06-24 15:33:16 -0600, Joe Pfeiffer wrote: >> One other note -- while you may want various good-looking fonts with >> ligatures in other domains, for writing code a monospace font with no >> ligatures lets you see exactly what's there and saves a host of >>

Re: FW: Pycharm Won't Do Long Underscore

2020-06-30 Thread Peter J. Holzer
On 2020-06-24 15:33:16 -0600, Joe Pfeiffer wrote: > One other note -- while you may want various good-looking fonts with > ligatures in other domains, for writing code a monospace font with no > ligatures lets you see exactly what's there and saves a host of > problems. My personal favorite for

Re: Pycharm Won't Do Long Underscore

2020-06-30 Thread Peter J. Holzer
unlikely that anybody who doesn't use German daily (and hence already has the need to type umlauts) will ever have to edit it. The Greek characters are in private code only. hp [1] I use vim. Digraphs are a bit awkward but good enough for medium rare[2] characters. I don't know

Re: Pycharm Won't Do Long Underscore

2020-06-25 Thread Michael Torrie
On 6/24/20 7:38 PM, Grant Edwards wrote: > On 2020-06-24, Peter J. Holzer wrote: > >> There is U+FF3F Fullwidth Low Line. >> >>> If there were, Python would not know what to do with it >> >> You can use it in variable names, but not at the beginning, and it isn't >> equivalent to two

Re: Pycharm offers only implementation of an abstract getter but not an abstract setter

2020-06-25 Thread zljubisic
You can freely leave Pycharm out of equation. In that case, there is a question how to force subclass to implement setter method? -- https://mail.python.org/mailman/listinfo/python-list

Re: Pycharm offers only implementation of an abstract getter but not an abstract setter

2020-06-25 Thread Rhodri James
On 24/06/2020 22:46, zljubi...@gmail.com wrote: Why Pycharm didn't offer a setter as well as getter? This is a general Python mailing list. If you have specific questions/complaints about PyCharm, they are probably better addressed directly to the makers of PyCharm. -- Rhodri James

Re: Pycharm offers only implementation of an abstract getter but not an abstract setter

2020-06-25 Thread zljubisic
This also works with no errors: from abc import ABC, abstractmethod class C(ABC): @property @abstractmethod def my_abstract_property(self): pass @my_abstract_property.setter @abstractmethod def my_abstract_property(self, val): pass class D(C):

Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread Grant Edwards
On 2020-06-24, Peter J. Holzer wrote: > There is U+FF3F Fullwidth Low Line. > >> If there were, Python would not know what to do with it > > You can use it in variable names, but not at the beginning, and it isn't > equivalent to two underscores, of course: Ouch. Anybody caught using that

Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread o1bigtenor
On Wed, Jun 24, 2020 at 1:54 PM Tony Kaloki wrote: > > Thanks for all your explanations, everyone. Hopefully, I'll know better next > time I come across a similar case. Now, to try and understand the rest of > Python... > Your last sentence - - - - I'm right there with you! (Reading it made me

Re: Pycharm offers only implementation of an abstract getter but not an abstract setter

2020-06-24 Thread zljubisic
If my subclass is as this: from subclassing.abstract.BaseSomeAbstract import BaseSomeAbstract class ChildSomeAbstract(BaseSomeAbstract): @property def abs_prop(self): return self._abs_prop I can create an instance of it with no errors. So x = ChildSomeAbstract() works with no

Pycharm offers only implementation of an abstract getter but not an abstract setter

2020-06-24 Thread zljubisic
I would like to have an abstract class in which I will have an abstract property. So I used Pycharm in order to create an abstract (base) class: import abc class BaseSomeAbstract(abc.ABC): _abs_prop = None @property @abc.abstractmethod def abs_prop(self): return self

Re: FW: Pycharm Won't Do Long Underscore

2020-06-24 Thread Joe Pfeiffer
One other note -- while you may want various good-looking fonts with ligatures in other domains, for writing code a monospace font with no ligatures lets you see exactly what's there and saves a host of problems. My personal favorite for these purposes is called "Terminus Regular", but which

Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread Peter J. Holzer
On 2020-06-24 13:48:18 -0400, Dennis Lee Bieber wrote: > On Tue, 23 Jun 2020 20:49:36 +, Tony Kaloki > declaimed the following: > > Alexander, > > Thank you so much! It worked! Thank you. One question: in your > > reply, are you saying that Python would have treated the two > > separate

Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread Chris Angelico
On Thu, Jun 25, 2020 at 4:40 AM MRAB wrote: > > On 2020-06-24 18:59, Chris Angelico wrote: > > On Thu, Jun 25, 2020 at 3:51 AM Dennis Lee Bieber > > wrote: > >> > >> On Tue, 23 Jun 2020 20:49:36 +, Tony Kaloki > >> declaimed the following: > >> > >> >Alexander, > >> >

Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread Tony Kaloki
Sent: Wednesday, June 24, 2020 7:28:52 PM To: python-list@python.org Subject: Re: Pycharm Won't Do Long Underscore On 2020-06-24 18:59, Chris Angelico wrote: > On Thu, Jun 25, 2020 at 3:51 AM Dennis Lee Bieber > wrote: >> >> On Tue, 23 Jun 2020 20:49:36 +, Tony Kaloki &g

Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread MRAB
On 2020-06-24 18:59, Chris Angelico wrote: On Thu, Jun 25, 2020 at 3:51 AM Dennis Lee Bieber wrote: On Tue, 23 Jun 2020 20:49:36 +, Tony Kaloki declaimed the following: >Alexander, > Thank you so much! It worked! Thank you. One question: in your reply, are you saying

Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread Chris Angelico
On Thu, Jun 25, 2020 at 3:51 AM Dennis Lee Bieber wrote: > > On Tue, 23 Jun 2020 20:49:36 +, Tony Kaloki > declaimed the following: > > >Alexander, > > Thank you so much! It worked! Thank you. One question: in > > your reply, are you saying that Python would have treated

Re: Pycharm Won't Do Long Underscore

2020-06-23 Thread Christian Gollwitzer
Am 23.06.20 um 22:49 schrieb Tony Kaloki: Alexander, Thank you so much! It worked! Thank you. One question: in your reply, are you saying that Python would have treated the two separate underscores the same way as a long underscore i.e. it's a stylistic choice rather than

Re: FW: Pycharm Won't Do Long Underscore

2020-06-23 Thread Terry Reedy
On 6/23/2020 4:44 PM, MRAB wrote: On 2020-06-23 20:18, Tony Kaloki wrote:   When I try to do a long underscore __  for classes in Pycharm, it only gives me two separate single underscores _ _. The "__" is 2 underscores; it's just that they usually appear joined together in

Re: Pycharm Won't Do Long Underscore

2020-06-23 Thread Alexander Neilson
asy to follow - even for me > - reply. > Tony > > Get Outlook for Android > > From: Alexander Neilson > Sent: Tuesday, June 23, 2020 9:28:37 PM > To: Tony Kaloki > Cc: python-list@python.org > Subject: Re: Pycharm Won't Do Long Underscore > > Hi Tony >

Re: Pycharm Won't Do Long Underscore

2020-06-23 Thread Alexander Neilson
Hi Tony The “long underscore” (often called Dunder as “double underscore”) is actually two underscores as you are seeing shown in PyCharm. However the display of it as one long underscore is a ligature (special font display to communicate clearer) and to enable these in PyCharm go

Re: Pycharm Won't Do Long Underscore

2020-06-23 Thread Grant Edwards
On 2020-06-23, Tony Kaloki wrote: >in your reply, are you saying that Python would have treated the >two separate underscores the same way as a long underscore No. There is no long underscore in Python. In Python, it's always two underscores. In some fonts, two underscores just

Re: Pycharm Won't Do Long Underscore

2020-06-23 Thread Tony Kaloki
, thanks again for your quick and easy to follow - even for me - reply. Tony Get Outlook for Android<https://aka.ms/ghei36> From: Alexander Neilson Sent: Tuesday, June 23, 2020 9:28:37 PM To: Tony Kaloki Cc: python-list@python.org Subject: Re: Pycharm Won't D

Re: FW: Pycharm Won't Do Long Underscore

2020-06-23 Thread MRAB
On 2020-06-23 20:18, Tony Kaloki wrote: Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10 From: Tony Kaloki<mailto:tkal...@live.co.uk> Sent: 23 June 2020 19:45 To: python-list@python.org<mailto:python-list@python.org> Subject: Pycharm Won't Do Lo

FW: Pycharm Won't Do Long Underscore

2020-06-23 Thread Tony Kaloki
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10 From: Tony Kaloki<mailto:tkal...@live.co.uk> Sent: 23 June 2020 19:45 To: python-list@python.org<mailto:python-list@python.org> Subject: Pycharm Won't Do Long Underscore Hi Guys,

Re: PyCharm, how to setup self contained subprojects

2020-05-23 Thread zljubisic
You are probably right. -- https://mail.python.org/mailman/listinfo/python-list

Re: PyCharm, how to setup self contained subprojects

2020-05-22 Thread Python
Le 22/05/2020 à 03:41, zljubi...@gmail.com a écrit : Hi, I should provide python code for (Spring) microservice patform. In microservice paradigm, each microservice should do a simple task, so python code beneath it should be very small. As a PyCharm (community) user, I don't know how to set

PyCharm, how to setup self contained subprojects

2020-05-21 Thread zljubisic
Hi, I should provide python code for (Spring) microservice patform. In microservice paradigm, each microservice should do a simple task, so python code beneath it should be very small. As a PyCharm (community) user, I don't know how to set up such development environment. Each microservice

[issue39739] Python crash every time opening pycharm, seems related to tensorflow

2020-02-25 Thread nono
New submission from nono : Hey, Whenever I try to open project in Pycharm, it will update python interpreter before the python process crashes with a SIGABRT and I get a crash window from OSX. I use homebrew with the latest packages and python 3.7.6. Any help is appreciated. Here's the log

[issue39739] Python crash every time opening pycharm, seems related to tensorflow

2020-02-24 Thread Mark Dickinson
Change by Mark Dickinson : -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue39739] Python crash every time opening pycharm, seems related to tensorflow

2020-02-24 Thread nono
nono added the comment: Okay, I will discuss this in tensorflow forum. Thanks for providing the information. -- ___ Python tracker ___

[issue39739] Python crash every time opening pycharm, seems related to tensorflow

2020-02-24 Thread Mark Dickinson
Mark Dickinson added the comment: Hmm. I don't see anything here that would indicate that this is a core Python problem. This looks like something you'd need to take up with the tensorflow folks. (Investigations could conceivably turn up a CPython bug as the underlying cause, in which case

[issue39739] Python crash every time opening pycharm, seems related to tensorflow

2020-02-24 Thread nono
Change by nono : -- components: macOS nosy: leo212121, ned.deily, ronaldoussoren priority: normal severity: normal status: open title: Python crash every time opening pycharm, seems related to tensorflow type: crash versions: Python 3.7 ___ Python

Re: Interpreter Python 3.8 not there to select from PyCharm

2020-02-18 Thread onlinejudge95
On Tue, Feb 18, 2020 at 1:40 AM Maxime Albi wrote: > I'm very new to Python and wanting to learn the basics. > I downloaded and installed Python 3.8 and PyCharm for my Windows 10 > machine. All good. > > Launched PyCharm and I started a new Project and tried to select an

Interpreter Python 3.8 not there to select from PyCharm

2020-02-17 Thread Maxime Albi
I'm very new to Python and wanting to learn the basics. I downloaded and installed Python 3.8 and PyCharm for my Windows 10 machine. All good. Launched PyCharm and I started a new Project and tried to select an 'interpreter' such as Python 3.8 but no interpreter was available for me to select

``pipenv + pycharm'' refrash/rescan packages index without restart pycharm.

2019-09-15 Thread Hongyi Zhao
Hi, I use pycharm with pipenv for env management. When I do some changes on the packages, say, add/remove some of them. How to let pycharm efrash/ rescan packages index without restart it? -- https://mail.python.org/mailman/listinfo/python-list

Re: I have anaconda, but Pycharm can't find it

2019-06-30 Thread mmuratkutlu
Hi everyone, I know this problem's solution because I solve in my computer. First of all, you can delete the project files. After that download python on official website and last version. after this step restart pycharm and create new project... Good luck -- https://mail.python.org/mailman

Re: can not use pycharm

2019-06-14 Thread Informatico de Neurodesarrollo
El 10/06/19 a las 13:28, aris escribió: Hello,this is my first time trying to learn coding and programming and I wanted to start with python.Though,when I download pycharm, I go to configure>settings>project interpreter and i can not put a project interpreter( I have download

Re: can not use pycharm

2019-06-14 Thread Johann Spies
On Mon, 10 Jun 2019 at 19:46, aris wrote: > > > Hello,this is my first time trying to learn coding and programming and I > wanted to start with python.Though,when I download pycharm, I go to > configure>settings>project interpreter and i can not put a project > inte

can not use pycharm

2019-06-10 Thread aris
Hello,this is my first time trying to learn coding and programming and I wanted to start with python.Though,when I download pycharm, I go to configure>settings>project interpreter and i can not put a project interpreter( I have download python version 3) .What should I do?thank you fo

Re: PyCharm installation

2019-05-19 Thread Jorge Gimeno
On Sun, May 19, 2019, 3:27 AM Syed Rizvi wrote: > Hi, > > I tried to install PyCharm. First time when I installed it, it worked > well. It developed some problem and when I reinstalled PyCharm, it gives me > error. I have installed it several times but could not install it

PyCharm installation

2019-05-19 Thread Syed Rizvi
Hi, I tried to install PyCharm. First time when I installed it, it worked well. It developed some problem and when I reinstalled PyCharm, it gives me error. I have installed it several times but could not install it I am unable to install PyCharm. -- https://mail.python.org/mailman/listinfo

Re: Errorcode when running scripts in PyCharm

2019-05-03 Thread Cameron Simpson
Two further things: 1: A keyboard macro of mine mangled my reply. Where I had: http://www.cskk.ezoshosting.com/cs/ you just want "\h", i.e. "C:\Users\hampu\..". Apologies. 2: If your command prompt is already in your "lab4" folder you don't need the full file path. You can just say

Re: Errorcode when running scripts in PyCharm

2019-05-03 Thread Cameron Simpson
On 02May2019 04:35, Hampus Sjödin wrote: Den torsdag 2 maj 2019 kl. 13:31:29 UTC+2 skrev DL Neil: On 2/05/19 11:05 PM, Hampus Sjödin wrote: > Hey guys, so I've managed to ruin PyCharm for myself.. I just finished my first script in PyCharm and I tried renaming the file, so I closed PyCh

Re: Errorcode when running scripts in PyCharm

2019-05-02 Thread אורי
Try to contact PyCharm support at supp...@jetbrains.com אורי u...@speedy.net On Thu, May 2, 2019 at 2:11 PM Hampus Sjödin wrote: > Hey guys, so I've managed to ruin PyCharm for myself.. I just finished my > first script in PyCharm and I tried renaming the file, so I closed PyCharm > t

Re: Errorcode when running scripts in PyCharm

2019-05-02 Thread Hampus Sjödin
Den torsdag 2 maj 2019 kl. 13:31:29 UTC+2 skrev DL Neil: > On 2/05/19 11:05 PM, Hampus Sjödin wrote: > > Hey guys, so I've managed to ruin PyCharm for myself.. I just finished my > > first script in PyCharm and I tried renaming the file, so I closed PyCharm > > to reenter th

Re: Errorcode when running scripts in PyCharm

2019-05-02 Thread DL Neil
On 2/05/19 11:05 PM, Hampus Sjödin wrote: Hey guys, so I've managed to ruin PyCharm for myself.. I just finished my first script in PyCharm and I tried renaming the file, so I closed PyCharm to reenter the file using the file manager.. And now it won't run when I try to. This is what I get

Errorcode when running scripts in PyCharm

2019-05-02 Thread Hampus Sjödin
Hey guys, so I've managed to ruin PyCharm for myself.. I just finished my first script in PyCharm and I tried renaming the file, so I closed PyCharm to reenter the file using the file manager.. And now it won't run when I try to. This is what I get: C:\Users\hampu\AppData\Local\Programs\Python

Pycharm issue with import ssl

2018-12-26 Thread Gunasekar Rajendran
While trying to run the Python code in PyCharm 2018.3.2 version I am getting the below error. Can someone help? Traceback (most recent call last): File "C:\Program Files\JetBrains\PyCharm Community Edition 2018.3.2\helpers\pydev\pydevconsole.py", line 5, in from _pydev_comm.

PyLint and Mypy real-time (and on-demand) code inspection from within PyCharm/IDEA

2018-09-18 Thread Roberto Leinardi
Hello there, I am the developer of pylint-pycharm and mypy-pycharm, two plugins providing both real-time and on-demand scanning of Python files with PyLint/Mypy from within PyCharm/IDEA. The real-time code inspection works automatically the same way like the PyCharm's build-in PEP8 check (you

Re: PyCharm

2018-07-23 Thread Michael Vilain
I used the pycharm edu version from here: https://www.jetbrains.com/pycharm-edu/download/download-thanks.html?platform=mac input works fine on it. YMMV. > On 20-Jul-2018, at 9:15 PM , no@none.invalid wrote: > > On Fri, 20 Jul 2018 20:56:41 -0700, Michael Vilain > wrote: >

Re: PyCharm

2018-07-22 Thread no
On Fri, 20 Jul 2018 20:56:41 -0700, Michael Vilain wrote: >I'm running PyCharm Edu (to go through their great tutorial). It's version is >2018.1.3, which I got from the web site. Unless you mistyped the version, >this is the current release and yours is very old. The date was

Re: PyCharm

2018-07-22 Thread no
On Sun, 22 Jul 2018 11:51:51 +0200, Chris Warrick wrote: >On Sat, 21 Jul 2018 at 05:17, wrote: >> >> Win7 >> >> I was watching some tutorial videos on Python that recommended I use >> PyCharm and it worked pretty well until I tried to use in

Re: PyCharm

2018-07-22 Thread Chris Warrick
On Sat, 21 Jul 2018 at 05:17, wrote: > > Win7 > > I was watching some tutorial videos on Python that recommended I use > PyCharm and it worked pretty well until I tried to use input. > > I found this: > https://youtrack.jetbrains.com/issue/PY-27891 > > It s

Re: PyCharm

2018-07-20 Thread Michael Vilain
I'm running PyCharm Edu (to go through their great tutorial). It's version is 2018.1.3, which I got from the web site. Unless you mistyped the version, this is the current release and yours is very old. -- Michael Vilain 650-322-6755 > On 20-Jul-2018, at 8:11 PM , no@none.invalid wr

PyCharm

2018-07-20 Thread no
Win7 I was watching some tutorial videos on Python that recommended I use PyCharm and it worked pretty well until I tried to use input. I found this: https://youtrack.jetbrains.com/issue/PY-27891 It says.. Pavel Karateev commented 10 Jan 2018 11:57 Hi Calvin Broadus! I am sorry

  1   2   3   >