python-build-standalone VS Visual Studio Code

Compare python-build-standalone vs Visual Studio Code and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
python-build-standalone Visual Studio Code
11 2,843
1,544 158,365
- 1.2%
9.1 10.0
8 days ago 1 day ago
Python TypeScript
BSD 3-clause "New" or "Revised" License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

python-build-standalone

Posts with mentions or reviews of python-build-standalone. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-28.
  • Mise is a polyglot tool version manager
    5 projects | news.ycombinator.com | 28 Apr 2024
    It also replaces "just" as a task manager for me which is very pleasant.

    The fact that the python plugin uses precompiled Python binaries by default instead of building them from source remove common issues I had with the asdf's python plugin at work with missing dependencies.

    Just so you know, I encountered two little quirks that needed a fix:

    - [Backspace Key Doesn't work in Python REPL](https://github.com/indygreg/python-build-standalone/blob/mai...)

  • Pyenv – lets you easily switch between multiple versions of Python
    20 projects | news.ycombinator.com | 25 Mar 2024
    These builds are an alternative: https://github.com/indygreg/python-build-standalone

    Those are what Rye and hatch use.

    Drawbacks: late availability of patch versions, various quirks from how they are built (missing readline, missing some build info that self-compiled C python modules might need.)

  • Show HN: Pywebview 5
    5 projects | news.ycombinator.com | 13 Mar 2024
    Bundling Python isn't too bad if you find the right tools for it.

    I really like https://github.com/indygreg/python-build-standalone and https://github.com/indygreg/PyOxidizer

    A bundled, built standalone Python can be 16 to 32MB (including the full standard library, which you can strip down to just the bits you use to save size). Not tiny, but probably not worth switching programming languages over.

  • ModuleNotFoundError, but it's there
    1 project | /r/learnpython | 16 Sep 2023
    I'm trying to build a "portable" Python package based on those available from https://github.com/indygreg/python-build-standalone/releases.
  • Briefcase: Convert a Python project into a standalone native application
    4 projects | news.ycombinator.com | 3 Aug 2023
    I'm a huge fan of https://github.com/indygreg/python-build-standalone which provides Python builds that CAN be moved around and work independently of any other Python installation.

    I used that for my own Python+Electron app, which I wrote about here: https://til.simonwillison.net/electron/python-inside-electro...

  • alternative to poetry/pip/pipenv/pyenv/venv/virtualenv/pdm/hatch/…
    2 projects | /r/programmingcirclejerk | 23 Apr 2023
    I used to build my own Pythons that are the same everywhere, now I use indygreg's Python builds. Rye will automatically download and manage Python builds from there. No compiling, no divergence.
  • As if there weren't enough packaging tools already: mitsuhiko/rye: an experimental alternative to poetry/pip/pipenv/venv/virtualenv/pdm/hatch/…
    14 projects | /r/Python | 23 Apr 2023
    One interesting tidbit is that it completely ignores your system Python installations, and instead uses precompiled installations of Python by indygreg from PyOxidizer. This means you don't have to deal with installing Python. It just auto downloads the right builds.
  • How to install any version of Python on Northeastern's Linux server
    1 project | dev.to | 19 Jul 2022
    wget https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5+20220630-x86_64_v3-unknown-linux-gnu-install_only.tar.gz -O - | tar -xz && mv python PortablePython
  • Switching from pyenv, rbenv, goenv and nvm to asdf – yujinyuz
    20 projects | news.ycombinator.com | 5 Apr 2022
    The lack of Ruby support instantly rings an alarm for me because CPython (on POSIX) also is not relocatable, but is listed as support. Turns pit Hermit is actually using a third-party build script[1] instead of the official one. While the python-build-standalone project is quite awesome and indeed is useful for a lot of things, it has enough quirks I would recommend against any generic package distributor to advertise as Python for general use. This in turn makes me lose most confidence on Hermit, unfortunately.

    Be careful if you’re also interested in Hermit. These kinds of things bit you up way down the road when you least expect them to.

    [1] https://github.com/indygreg/python-build-standalone

  • How to make sure a python program runs on a computer that might not have internet connection to download the external libraries used?
    6 projects | /r/learnpython | 28 Mar 2022
    If you really want to be sure, you can download an install_only standalone Python build from https://github.com/indygreg/python-build-standalone/releases and install the libraries with the included pip. Then just tar it again to archive it, and use the included python to run your project. The downloaded wheel you get with pip wheel may depend on the Python version so you just save the wheels you must make sure the Python point version is exactly the same.

Visual Studio Code

Posts with mentions or reviews of Visual Studio Code. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-30.
  • Create a Chat App With Node.js
    8 projects | dev.to | 30 Apr 2024
    First, grab your favorite command-line tool, Terminal or Warp, and a code editor, preferably VS Code and let’s begin.
  • Asynchronous Programming in C#
    6 projects | news.ycombinator.com | 30 Apr 2024
    C# is very good as a language, have developed in it for 5+ years. The problem is the gap between what MSFT promises to management and actually delivers to developers. You really really need to fully read the fine print, think of the omissions in documentation and implement a proof-of-concept that almost implements the full solution to find out the hidden gotchas.

    For example, even probably their best product VS Code only got reasonable multiple screens support last year: https://github.com/microsoft/vscode/issues/10121#issuecommen...

    And then, on the other end of the spectrum, you have Teams.

  • 8 Essential VS Code Extensions [2024]
    1 project | dev.to | 28 Apr 2024
    Hey fellow amazing developers, we got you Essential VS Code Extensions for 2024 (these are especially important for web developers) recommended by our developers at evotik, we wont talk about ESlint nor Prettier which all of you already know.
  • scrape-yahoo-finance
    3 projects | dev.to | 25 Apr 2024
    Visual Studio Code (VS Code): Developed by Microsoft, VS Code is a lightweight yet powerful IDE with extensive support for Python development through extensions. It offers features like IntelliSense, debugging, and built-in Git integration.
  • XDebug with WP-Setup
    3 projects | dev.to | 24 Apr 2024
    In VSCode for example this can be easily done by adding the following .vscode/launch.json file:
  • I can't stand using VSCode so I wrote my own (it wasn't easy)
    10 projects | news.ycombinator.com | 21 Apr 2024
    I had a near-identical experience. I looked into switching in 2019 and ran into this 2016 bug which was a showstopper for me. Fixed it myself, grand total 4 line diff. https://github.com/microsoft/vscode/issues/10643
  • Employee Management System using Python.
    2 projects | dev.to | 21 Apr 2024
    When working in Visual Studio Code (VS Code), always create a new Python file for your project.
  • A deep dive into progressive web apps (PWA)
    1 project | dev.to | 20 Apr 2024
    Code Editor: Choose a code editor like Visual Studio Code that offers good support for web technologies and extensions for PWA development.
  • Build a Music Player with Python
    2 projects | dev.to | 20 Apr 2024
    When working in Visual Studio Code (VS Code), create a new Python file for our music player project. It's helpful to have separate files for different parts of your project.
  • Why single vendor is the new proprietary
    2 projects | news.ycombinator.com | 19 Apr 2024
    https://github.com/microsoft/vscode/forks

    27,000 people seem to have done so.

What are some alternatives?

When comparing python-build-standalone and Visual Studio Code you can also consider the following projects:

iron.nvim - Interactive Repl Over Neovim

thonny - Python IDE for beginners

pyenv - Simple Python version management

reactide - Reactide is the first dedicated IDE for React web application development.

eclectica - ☀️ Cool and eclectic version manager for any language

Spyder - Official repository for Spyder - The Scientific Python Development Environment

semver - Semantic Versioning Specification

doom-emacs - An Emacs framework for the stubborn martian hacker [Moved to: https://github.com/doomemacs/doomemacs]

evcxr

KDevelop - Cross-platform IDE for C, C++, Python, QML/JavaScript and PHP

vscode-jupyter - VS Code Jupyter extension

vscodium - binary releases of VS Code without MS branding/telemetry/licensing