Python Forum
Need help for beginning coding - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Need help for beginning coding (/thread-2589.html)

Pages: 1 2


RE: Need help for beginning coding - zivoni - Mar-27-2017

Are you sure that you have downloaded Community Edition (= free) and not the Professional one(= paid)? I have just tried to download community one, extracted it, run with pycharm-community-2017.1/bin/pycharm.sh and it just started and there was nothing about licence activation, or email...

I would definitely not pay for an IDE that I had not chance to try.


RE: Need help for beginning coding - sylas - Mar-27-2017

With PyCharm License Activation, I registered myself , I asked for a new password. It seems to me I am in an ocean. So now PyCharm non available. Since terminal says python is inside my software, I should like to work with my vim, as I did with C++. But I always I don't know how ! !


RE: Need help for beginning coding - snippsat - Mar-27-2017

Quote:sylvain@sylvain-HP-Mini-110-1100:~$ python
Python 2.7.12 (default, Nov 19 2016, 06:48:10)
[GCC 5.4.0 20160609] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
That is what I have. But how do I work with it ?
As a new user you should start with python 3.
Ubuntu 16.04 comes by default with Python 3.5.1 installed.
You start it by python3 in terminal.
pip is very important for Python,
you may need to install pip for Python 3 sudo apt-get install python3-pip
Now you can test that it work:
$ python3
Python 3.5.2 (default, Nov 17 2016, 17:05:23) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()

$ pip -V
pip 9.0.1 from /usr/local/lib/python3.5/dist-packages (python 3.5)

# Test Install
$ pip install requests
Collecting requests
  Downloading requests-2.13.0-py2.py3-none-any.whl (584kB)
    100% |████████████████████████████████| 593kB 945kB/s 
Installing collected packages: requests
Successfully installed requests-2.13.0
You point PyCharm or other editors to point to 3.5.
As mention you most download Community Edition(Free).


RE: Need help for beginning coding - sylas - Mar-28-2017

At last, evert thing seems OK. PaCharm and python3. About 20 hours for all that ! Many thanks to all persons that helped me. Sylas