Hi @codingbibi,
Welcome to the community
Everyone was new once. (What are your top three recommendations for a new developer in the space?)
What operating system are you using? What version of node are you using?
Using Windows Subsystem for Linux 2 (WSL2) and node 10.22.1 I ran the following in a new directory codingbibi
:
$ npm init -y
Wrote to /home/abcoathup/projects/forum/codingbibi/package.json:
{
"name": "codingbibi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
}
$ npm install @openzeppelin/contracts
npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN codingbibi@1.0.0 No description
npm WARN codingbibi@1.0.0 No repository field.
+ @openzeppelin/contracts@3.2.0
added 1 package from 1 contributor and audited 1 package in 0.476s
found 0 vulnerabilities
If you haven't already, I recommend looking at the Learn guides: https://docs.openzeppelin.com/learn/
Which git repository did you clone?