Top "Post-install" questions

This tag is used for user-defined scripts that are executed by a package manager after the installation of a software package.

Local gulp not found (Try running: npm install gulp)

I created a module (webapp-module-storage) which has the following definitions: package.json { "dependencies": { ... }, "devDependencies": { "gulp": "^3.9.1", ... }, "name": "webapp-module-storage", "scripts": { "postinstall": "gulp …

npm gulp npm-install post-install
Execute a Python script post install using distutils / setuptools

I'm trying to add a post-install task to Python distutils as described in How to extend distutils with a simple …

python installation setuptools distutils post-install