jspm_packages does not exist on 'Stencil Init' of Stencil Installation
By : Guru Karthi
Date : March 29 2020, 07:55 AM
I hope this helps you . If you are seeing this, you can resolve it by installing jspm just in the directory you are working in. This doesn't help if you need jspm for other projects, but it will get you working for the time being with Stencil. Point 2 on this page
|
Template edit option not found in back end after apply stencil theme : Bigcommerce Stencil
By : Vincenzo Pagliari
Date : March 29 2020, 07:55 AM
wish help you to fix your issue In the link you provided, it denotes that those instructions for edit html/css options are only available in browser for blueprint themes at this time. Stencil themes are uploaded as archive (.zip) files and do not interact with webdav in any way.
|
Error 'stencil init' when installing stencil-cli and base theme
By : DaxApps
Date : March 29 2020, 07:55 AM
I hope this helps you . I'm not 100% sure which step resolved this issue, but here is what I did: uninstalled both my NVM (node version manager) and the existing installation of Node. Deleted the existing npm install location (e.g. "C:\Users\AppData\Roaming\npm") so that the nvm install location will be correctly used instead. Reinstalled my NVM manger https://github.com/coreybutler/nvm-windows and use nvm install 4.6.1 64 to get the correct version of node required for stencil, and ran nvm use 4.6.1. Went into control panel and updated my visual studios to include the Common Tools component. Then, ran through the normal progression of steps as detailed in the stencil documentation. npm install -g @bigcommerce/stencil-cli git clone https://github.com/bigcommerce/stencil.git cd stencil npm install stencil init
|
Absolute imports in python not working, relative imports work
By : Fatalh
Date : March 29 2020, 07:55 AM
like below fixes the issue Since it's not shown, I have to assume you're running python a/foo.py, this puts the directory of the script ('a') on the beginning of sys.path when in reality you want the current directory on the beginning of sys.path. You should instead run python -m a.foo which will correctly initialize the sys.path roots for your project structure.
|
Stencil CLI - Installation Error - Stencil Init - command not found
By : Marwan Sabri
Date : March 29 2020, 07:55 AM
To fix this issue It could be that Stencil CLI was installed in a local directory instead of globally. You can try to rerun the command to install the CLI: npm install -g @bigcommerce/stencil-cli and be sure that the -g isn't omitted. You can also try entering echo $NVM_DIR and if it returns nothing in the terminal, run source ~/.bash_profile and then try stencil init again.
|