Python Forum
Need help for beginning coding
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Need help for beginning coding
#11
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.
Reply
#12
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 ! !
Reply
#13
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).
Reply
#14
At last, evert thing seems OK. PaCharm and python3. About 20 hours for all that ! Many thanks to all persons that helped me. Sylas
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Program doesnt return beginning bilisim19 2 897 Feb-15-2023, 06:23 PM
Last Post: Larz60+
  List of dataframe values beginning with x,y or z glidecode 3 1,891 Nov-08-2021, 10:16 PM
Last Post: glidecode
  How to start the program from the beginning. iamaghost 5 2,874 Feb-23-2021, 03:40 AM
Last Post: deanhystad
  want to change the beginning of the result Rudinirudini 5 3,540 Nov-15-2018, 11:28 AM
Last Post: Rudinirudini
  Beginning of Beginner Help: Should I start with Python? appdevelnewb 2 3,000 Jul-23-2018, 11:17 PM
Last Post: appdevelnewb
  Wrap from end to beginning. 27 to 1, 28 to 2 etc DreamingInsanity 5 3,623 Jun-24-2018, 01:02 PM
Last Post: ljmetzger
  How to Loop CSV File Beginning at Specific Row? bmccollum 5 40,244 Nov-05-2017, 11:04 PM
Last Post: bmccollum

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020