Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install pcbasic via python pip




pcbasic - A free, cross-platform emulator for the GW-BASIC family of interpreters., it belongs to Classifiers:

- Intended Audience :: End Users/Desktop
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Programming Language :: Python :: 2.7
- Topic :: Software Development :: Interpreters
- Topic :: System
- Topic :: System :: Emulators

When you know about this project and you want to new install pcbasic to support your project or you get trouble as ModuleNotFoundError: No module named "pcbasic" or ImportError: cannot import name "pcbasic" in your project, let follow this tutorial to install pcbasic



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_pcbasic_env

- Active the virtual environment

test_pcbasic_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_pcbasic_env

- Active the virtual environment

source test_pcbasic_env/bin/active


Step 2: OK, now, let flow below content to start the installation pcbasic

To install pcbasic on Windows(CMD):

py -m pip install pcbasic

To install pcbasic on Unix/macOs:

pip install pcbasic


Step 3: If you want to install a specific pcbasic version, add ==<pcbasic version> to the end command line

Example:

pip install pcbasic==2.0.dev2                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
pcbasic 2.0.6.post22022-08-17T18:30:09Windows:

py -m pip install pcbasic==2.0.6.post2

Unix/macOs:

pip install pcbasic==2.0.6.post2

pcbasic 2.0.62022-08-03T20:57:17Windows:

py -m pip install pcbasic==2.0.6

Unix/macOs:

pip install pcbasic==2.0.6

pcbasic 2.0.52022-07-16T16:48:01Windows:

py -m pip install pcbasic==2.0.5

Unix/macOs:

pip install pcbasic==2.0.5

pcbasic 2.0.42021-11-07T19:03:19Windows:

py -m pip install pcbasic==2.0.4

Unix/macOs:

pip install pcbasic==2.0.4

pcbasic 2.0.32020-09-26T18:37:49Windows:

py -m pip install pcbasic==2.0.3

Unix/macOs:

pip install pcbasic==2.0.3

pcbasic 2.0.22019-02-10T09:06:12Windows:

py -m pip install pcbasic==2.0.2

Unix/macOs:

pip install pcbasic==2.0.2

pcbasic 2.0.12018-12-08T18:58:29Windows:

py -m pip install pcbasic==2.0.1

Unix/macOs:

pip install pcbasic==2.0.1

pcbasic 2.0.02018-08-12T15:29:22Windows:

py -m pip install pcbasic==2.0.0

Unix/macOs:

pip install pcbasic==2.0.0


Step 4: Otherwise, you can install pcbasic from local archives:

Download the distribution file from pcbasic-2.0.6.post2.tar.gz or the specific pcbasic version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pcbasic_downloaded_file>

On Unix/macOs:

pip install <path_to_pcbasic_downloaded_file>


List distribution:


Project link:

- Bug Tracker
- Homepage
- Source Code