Top "Module" questions

A logical subdivision of a larger, more complex system.

Where are the python modules stored?

I have recently started learning Python and I have 2 questions relating to modules. Is there a way to obtain a …

python directory module
How to import a Python class that is in a directory above?

I want to inherit from a class in a file that lies in a directory above the current one. Is …

python module directory python-import
Adding a module (Specifically pymorph) to Spyder (Python IDE)

I have managed to get spyder installed and functioning on my mac but I want to add in a few …

python import module easy-install spyder
Typescript ReferenceError: exports is not defined

Trying to implement a module following the official handbook, I get this error message: Uncaught ReferenceError: exports is not defined …

typescript module
Generate random numbers with a given (numerical) distribution

I have a file with some probabilities for different values e.g.: 1 0.1 2 0.05 3 0.05 4 0.2 5 0.4 6 0.2 I would like to generate random numbers using …

python module random
Python math module

Whenever I try to use any of the built-in functions of Python's exponentiation and logarithms module, I get an error …

python math module import logarithm
PyCharm error: 'No Module' when trying to import own module (python script)

I have written a module (a file my_mod.py file residing in the folder my_module). Currently, I am …

python module pycharm
Relation between CommonJS, AMD and RequireJS?

I'm still very confused about CommonJS, AMD and RequireJS, even after reading a lot. I know that CommonJS (formerly ServerJS) …

javascript module requirejs amd commonjs
What is the most compatible way to install python modules on a Mac?

I'm starting to learn python and loving it. I work on a Mac mainly as well as Linux. I'm finding …

python macos module packages macports
Python way to clone a git repository

Is there a Python way without using a subprocess to clone a git repository? I'm up for using any sort …

python git module