Can not download the third web dependency on VS Code - visual-studio-code

Can someone please guide me as to why when doing npm install #thirdweb-dev/react #thirdweb-dev/sdk ethers that it throws up all these errors. I tried removing my odes modules, reinstalling it etc. Ive tried everything. Please help

Related

How to fix CANNOT LINK EXECUTABLE "mongod": library "libicudata.so.69" not found

I'm trying to run mongodb in termux and after searching i found that i should to install pointless repo to locate mongodb pkg and setup it and after installing when i'm trying to run mongod i got the following error
CANNOT LINK EXECUTABLE "mongod": library "libicudata.so.69" not found
When i'm going to lib dir in termux i found the following libicu exist
enter image description here
i tried to search more about it and find some answers said you have to install r-base because icu has been updated and R depends on it.
and others said you have to install libicudata.so.69 and when i'm trying to install it i get the following error
Unable to locate package libicudata.so..69
E: Couldn't find any package by glob 'libicudata.so..69'
and some others said that pointless packages is outdated and you have to re build the package i'm not a professional in using termux and i don't know anything about packages and how to re build it so
i'm really confused and i hope someone help me to find a simple solution to make it work

pulp.pulpTestAll() :has no attribute 'pulpTestAll'

I just installed pulp and followed instructions here: https://www.coin-or.org/PuLP/main/installing_pulp_at_home.html#testing-your-pulp-installation
however it shows the following message:
AttributeError: module 'pulp' has no attribute 'pulpTestAll'
besides that, the glpk can't be installed either:
(base) MBP:pulp-1.4.0 ci$ sudo apt-get install glpk
sudo: apt-get: command not found
can anyone help? thanks
I ran into a similar issue today. It seems the test functionality has been removed in PuLP 2.0.
This is described here:
https://github.com/coin-or/pulp/issues/253
Can't help you with the GLPK install I'm afraid, been a while since I worked in Linux, but that seems unrelated to PuLP, as that is only the LP-interface.
It has been the case for a while that for PuLP to detect your solvers on linux you needed to run the test, so maybe you can try following the tip in the github discussion, regarding downloading the help functionality from the github code. Then you can run the test and PuLP can detect the solvers on your system after you've installed them.
For installing glpk, go to the link below
https://appuals.com/how-to-fix-sudo-apt-get-command-not-found-on-macos/
Follow the section titled as "Method 1: Installing Homebrew in macOS" in the middle of the page.
Once done, run the command below
brew install glpk
It worked for me. Hope it works for you too.

Error:Invalid data, chunk must be a string or buffer, not object when running ionic -v

Error in cmd
I've tried uninstalling ionic, cordova and node.js and reinstalling them two times. One with lts node and the othe, current lts.But the error still persists. Any help would be greatly appreciated
For somoe reason, npm uninstallof cordova, ionic, and the like didnt remove the files which explains those red characters I saw but did not mind. So to those who also encountered this problem, go to C:\Users\YourAccName\AppData\Roaming and manually delete npm and npm-cache files. After that, you may reinstall ionic then cordova. It worked for me :)
Finally!

collectd-how to install write_riemann plugin

I'm new to collectd and Riemann. Im essentially trying to direct collectd logs to a riemann server instance. I understand that I need write_riemann plugin installed. I tried compiling the source files for write_riemann available online, but it includes a file called "riemann.pb-c.h", which is no where to be found. Please help!
Download the binary. After running the build script, while running the configure script include "--enable-write_riemann", this should install it. I had a lot of dependencies missing on CentOS, which threw a lot of errors. Once they were installed, write_riemann plugin was compiled and installed. Another issue you might face while installing the dependency is not able to find the right packages for protobuf-c.I was using yum package installer. Go to sudo vi /etc/yum.repos.d/epel.repo and change enabled from 0 to 1. After this, the protobuf-c processor was recognised while running the configure script. This solved my issue. Hope it does yours too!

Why does Yeoman generator not work when installed through npm?

Code
GitHub version: https://github.com/trevordmiller/generator-code-deck
npm version: https://www.npmjs.org/package/generator-code-deck
Background
I have built a Yeoman generator which is working perfectly locally (using npm link after cloning the repo from GitHub). However, when I npm publish the generator to npm and install it via npm install -g generator-code-deck, running the generator throws no such file or directory and cannot find module errors:
These errors don't make sense to me, because 1. the files and folders are obviously there (as shown by the screenshot doodles) and 2. the generator is working via a symbolic link to the local repo; why should the npm package be any different?
I have been searching online to find an answer but I can't find anything. Does anyone know why these errors are happening when trying to install via npm, but not via a symbolic link? Does anyone know how to fix this so that I can release the official npm version of the Yeoman generator? Any help would be much appreciated!
Chances are you're not publishing all files to npm.
This can be caused by a .npmignore file or by the files key of your package.json.