About 740,000 results
Open links in new tab
  1. compiling - How to compile a python file? - Ask Ubuntu

    Jul 27, 2013 · Check out this link Compile in Python In the middle of the page, it talks about the py_compile module that can be imported. The syntax is as follows: import py_compile …

  2. how to fix configure: error: C compiler cannot create executables

    Jul 12, 2015 · how to fix configure: error: C compiler cannot create executables Ask Question Asked 10 years, 5 months ago Modified 4 years, 6 months ago

  3. How to run a .pyc (compiled python) file? - Ask Ubuntu

    Python is an interpreted language, as opposed to a compiled one, though the distinction can be blurry because of the presence of the bytecode compiler. Compiling usually means converting to machine …

  4. Cannot find appropriate C compiler on this system - Ask Ubuntu

    May 24, 2021 · It looks like you don't have gcc installed. In case you specifically need gcc-7, you can install it with sudo apt install gcc-7 Otherwise you can install the package gcc or build-essential …

  5. gdb - Cannot compile GDB7.8 with Python support - Ask Ubuntu

    Aug 20, 2014 · However, that's not enough to get Python installed. Before the configure script tries to compile the C program, it gets various options from python-config.py. If these options aren't correct, …

  6. Compile 32 bit on 64 bitsystem - Ask Ubuntu

    2 This is how I managed to build and side-install 32-bit Python 3.5.2 on Ubuntu 16, having 64-bit version already installed by apt: # Some prerequisites: sudo apt install libffi-dev:i386 sudo apt install …

  7. Unable to install ta-lib with error `/opt/dev/miniconda3/compiler ...

    Jan 19, 2025 · Did you look at what actually got built? it looks like ta-lib-0.4.0 names the library as libta_lib not libta-lib. See also this note in the README. FWIW I would always use the default …

  8. No acceptable C compiler found in $PATH - Ask Ubuntu

    Jan 8, 2013 · Run sudo apt-get install build-essential to install the C compiler.

  9. configure: error: no acceptable C compiler found in $PATH

    What are the outputs of update-alternatives --query cc and ls -l /usr/bin/{cc,gcc}?

  10. compiling - Compiler has trouble finding Python.h - Ask Ubuntu

    I keep trying to test-compile a simple "hello world" with the gnu compiler on Ubuntu 16.04. The twist is that I am doing THAT because I wanted to make sure the compiler could find the <Python.h&...