Build python on Unix

0 votes
I've got the development version of python from git. Now how do I start building it on Unix?
Jun 6, 2019 in Python by Meg
312 views

1 answer to this question.

0 votes
  1. Fork the CPython repository to your GitHub account and get the source code using:

    git clone https://github.com/<your_username>/cpython
    cd cpython
    
  2. Build Python, on UNIX using:

    ./configure --with-pydebug && make -j
answered Jun 6, 2019 by Fez

Related Questions In Python

0 votes
1 answer

Run Unix command within Python

From the python docs, use the subprocess ...READ MORE

answered Apr 27, 2018 in Python by Nietzsche's daemon
• 4,260 points
488 views
+1 vote
2 answers

Measuring the distance between pixels on OpenCv with Python

You can try this: Mat pts1(nPts, 1, CV_8UC2), ...READ MORE

answered Aug 24, 2018 in Python by Omkar
• 69,210 points
10,147 views
0 votes
1 answer

Reading Unix Timestamp in Python

import datetime print(datetime.datetime.fromtimestamp(int("1284101485")).strftime('%Y-%m-%d %H:%M:%S')) That is the cleanest way ...READ MORE

answered May 15, 2018 in Python by Nietzsche's daemon
• 4,260 points
783 views
0 votes
1 answer

When I create and remove files rapidly on windows using python I get WindowsError (Error 5)

Here's the short answer: disable any antivirus or ...READ MORE

answered Aug 31, 2018 in Python by charlie_brown
• 7,720 points
1,665 views
0 votes
2 answers
+1 vote
2 answers

how can i count the items in a list?

Syntax :            list. count(value) Code: colors = ['red', 'green', ...READ MORE

answered Jul 7, 2019 in Python by Neha
• 330 points

edited Jul 8, 2019 by Kalgi 4,054 views
0 votes
1 answer
0 votes
1 answer

Build python on mac

Fork the CPython repository to your GitHub account and get ...READ MORE

answered Jun 6, 2019 in Python by Fez
487 views
0 votes
1 answer

Build Python on Windows

Fork the CPython repository to your GitHub account and get ...READ MORE

answered Jun 6, 2019 in Python by Fez
413 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP