I try to install Sylius but i have an error after projet installed
"/vendor/sylius/sylius/src/Sylius/Bund
le/AdminBundle/Resources/config/grids/product_from_taxon.yml"
This must be something in the environment of installation. Since 99% of people who install Sylius lately do not encounter this YAML parsing problem.
This issue was already posted, we are investigating it :)
What commands you used? Also, do you have all the required tools installed? Composer, npm and so on?
I installed one yesterday and it worked just fine.
Related
I am currently facing a problem installing a jupyterlab theme that is called rahlir/theme gruvbox.
Since I have installed the jupyterlab extensions and numerous other custom themes I thought that this shouldn't be a
problem.
Although, after many tries, I haven't managed to install it.
The message im getting is this:
Dependency confliction
I have tried using the instructions straight from the github repo but didn't seem to work.
First I tried to install via pip in the command prompt like that:
jupyterlab extension install #ahlir/theme-gruvbox
Unfortunately this didn't work!
After that I tried installng via the extension manager from jupyterlab itself but unfortunately I got the same message!
Note that I have already installed the latest version of jupyterLab and also I have recently update all the packages in my
Anaconda distribution and anaconda itself!
Any help will be greatly appreciated!
Thanks in advance!
I'm using PyInstaller to compile a program and keep coming across the error "No module named 'charset_normalizer.md__mypyc.'" The Charset-Normalizer package is installed.
As a test, I tried re-compiling a program that I had previously created in early September without issue, but now receive the same error. I thought that maybe there is an issue with the versions of either PyInstaller or Charset-Normalizer so I've experimented with different versions, but cannot get it to work.
You are probably missing the "chardet" library
I installed it and it worked.
pip install chardet
I had the EXACT problem. Scripts that I was able to make into executables using Pyinstaller before I could no longer do so again. In my script I used the pdfplumber package, which when you install it also installs other packages like pillow, wand, charset-normalizer, etc.
Since the error was regarding charset-normalizer for me as well, I tried different versions of it. For me it was version 2.1.0 that made the executable work again. Install it with the "pip install charset-normalizer==2.1.0" command: https://pypi.org/project/charset-normalizer/2.1.0/.
If it does not work, go to "Release history" on that link and try another version. Try to remember when was the last time you created a working executable and get the version you think will work for you.
This worked for me:
I just added
from charset_normalizer import md__mypyc
to the top of my python script.
https://stackoverflow.com/a/58449206/20576777
If you don't have the charset-normalizer library installed, then you should install it using the following command:
pip install charset-normalizer
I got it to work by installing older versions of PyInstaller and Charest-Normalizer. Anytime this messages pops-up, consider installing an older version of the package.
Pyinstaller may sometimes miss your dependency. In such a case run pyinstaller with the --collect-all option.
In this case --collect-all charset_normalizer should force pyinstaller to include the dependency.
I want to install Fluent Bit on macOS Catalina. All the resources available are for Ubuntu and Windows.
I followed this guide for Ubuntu [1].
Can anyone guide me on this?
[1] https://docs.fluentbit.io/manual/installation/linux/debian
I doubt that you can install those debian packages on macOS. But you can surely build from the source. There is a link on official documentation on how to build and install from source.
But from my experience you better get an understanding of possible errors that might come if you just try to download and install. Have a look at this post about pre-requisites. Once you have add those dependencies, surely you can build and installed on a macOS.
If you really want to install a package version on Mac, use it with homebrew.
You can install Fluent Bit on Mac with homebrew:
brew install fluent-bit
In my experience, on Mac it is very unstable and when I've attempted to do something simple like tailing logs you'll get lots of crashes.
I can't install symfony debugbar (web profiler) with composer. I'm getting an error. How can I solve this problem?
Your package doesn't exist, the message tel you some possibilities.
You can check the "symfony/debug-pack" package https://packagist.org/packages/symfony/debug-pack.
I am facing a failed downloads problem while trying to install sbt 0.13.13 on ubuntu 16.04 following the documentation on: http://www.scala-sbt.org/release/docs/Installing-sbt-on-Linux.html.
Below, the message log:
I also tried the answer from paradigmatic here: Install sbt on ubuntu, and: https://askubuntu.com/questions/732092/how-to-install-sbt-in-its-latest-version-in-ubuntu-14-04. Those posts are a little old.
Neverhteless, the official method seems to bug so far.
Anyone faced the same impediments?
The cause and solution is actually provided by https://medium.com/#henricook/solution-to-sun-security-validator-validatorexception-e300dd7dba70#.tk7u7klut. The experimental java9 is to blame. Installing java8 as in https://www.digitalocean.com/community/tutorials/how-to-install-java-with-apt-get-on-ubuntu-16-04 will solve it.