Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mortoray/interview.codes
Code for courses offered by Interview.Codes
https://github.com/mortoray/interview.codes
Last synced: about 1 month ago
JSON representation
Code for courses offered by Interview.Codes
- Host: GitHub
- URL: https://github.com/mortoray/interview.codes
- Owner: mortoray
- Created: 2019-08-15T04:14:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-20T18:45:08.000Z (over 3 years ago)
- Last Synced: 2023-03-11T15:02:07.377Z (almost 2 years ago)
- Language: Python
- Size: 382 KB
- Stars: 3
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Interview.Codes Classes
On my site [Interview.Codes](https://interview.codes/), I offer several courses for interview preparation. As part of the course I provide sample implementations to the algorithsm discussed. That code is stored here.
You can take all of my courses on [SkillShare profile](https://www.skillshare.com/r/profile/Edaqa-Mortoray/8551496).
# Python Virtual Environment
## Linux / Mac
Be sure to use `python3` on Linux, as multiple versions may be installed.
```
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
```## Windows - Command Prompt
```
python -m venv env
env\Scripts\activate.bat
pip install -r requirements.txt
```## Windows - Power Shell
By default the virtual environment scripts will be blocked from running. This will disable that check. _If somebody knows of a more fine-grained permission change, let me know and I'll update this reference._
As Administrator:
```
Set-ExecutionPolicy Unrestricted
```As user:
```
python -m venv env
env\Scripts\activate.ps1
pip install -r requirements.txt
```