'ERROR' 카테고리의 글 목록
본문 바로가기
반응형

ERROR11

ModuleNotFoundError: No module named 'tensorflow.compat'; 'tensorflow' is not a package 에러 해결 Tensorflow 를 불러오는도중 에러가 났다. # -*- coding: utf-8 -*- import os import pandas as pd import numpy as np import tensorflow as tf from keras.preprocessing.text import Tokenizer from keras.preprocessing.sequence import pad_sequences from keras.models import Sequential from keras.layers import Embedding, LSTM, Dense ERROR : ModuleNotFoundError: No module named 'tensorflow.compat'; 'tensorflow' is not a.. 2023. 7. 14.
ModuleNotFoundError: No module named 'spacy' 해결방법 pytorch 테스트 중 나온 에러, ModuleNotFoundError: No module named 'spacy' text_field = Field(tokenize='spacy', lower=True, include_lengths=True) label_field = Field(sequential=False, is_target=True) 해결 방법은 spacy 를 설치해 주면 된다.! $pip install spacy 그리고 다시 실행했을 때 다른 에러가 나왔다. UserWarning: Spacy model "en" could not be loaded, trying "en_core_web_sm" instead warnings.warn(f'Spacy model "{language}" could not b.. 2023. 6. 23.
Visibility for constructor is ignored. If you want the contract to be non-deployable, making it "abstract" is sufficient Remix Ethereum IDE 로 간단한 solidity smart contract를 연습하다가 나온 에러 Visibility for constructor is ignored. If you want the contract to be non-deployable, making it "abstract" is sufficient 이 에러는 a visibility specifier 중 하나인 public이 constructor에 아무 효과가 없다는 것을 말하고 있는 것이다. Constructor 는 해당 contract가 처음 배포될 때 단 한번 실행되고 이후에 다시 실행될 수 없다. 때문에 "visible" 을 가리키는 public은 사용하지 않아도 된다는 의미이다. * Abstract contracts 는.. 2022. 8. 20.
Error: [ethjs-query] while formatting outputs from RPC (transaction underpriced error) Polygon 메인 네트워크에 실제로 배포를 해보려니 많은 우여곡절이 있엇다 먼저 내 메타마스크 지갑에 Matic을 사서 옮겨야하고 또 배포하려니 Matic만 있으면 안되고 또 수수료를 ETH로 결제하넴 🤦🏽‍♀️ 겨우겨우 다 해서 이제 배포하려니 아래와 같은 에러가 나왔다. Error: [ethjs-query] while formatting outputs from RPC (transaction underpriced error) 만약 gas 가격이 너무 적게 설정된 경우 트랜잭션을 수행하려고 할 때 이런 에러가 난다고 한다. 해결법은 👇👇 1. 메타마스크 설정 -> 고급 -> 고급 가스 제어 기능 켠다. 2. 트랜잭션을 일으킨다. 최대 우선 요금 (GWEI)와 최대 요금 (GWEI)를 모두 40으로 맞추.. 2022. 5. 19.
web3 transfer error = Error: overflow ERC20 토큰 이체 시 overflow에러 해결법 이더리움 Rinkeby 테스트넷에 ERC20 토큰을 발행 후, Contract를 불러와 transfer 이체하도록 개발 중에, 1을 넣으면 1* -10**18승 으로 0.0000000000000000001 ? 이렇게 나온다. 이더리움의 ETH 이체 시에는 web3.utils.toWei("이더리움 수", "ether") 이렇게 이미 쓰고 있어서 이더리움은 문제가 없었다. ERROR : web3 transfer error = Error: overflow JavaScript 수들이 충분한 정확성이 없기 때문에 web3.utils.toBN() 을 사용하면 된다고 한다. toBN() 인자값으로는 number, string 모두 가능하다. // const value = value*10**18; ----> ERROR.. 2022. 4. 1.
Error: web3.toWei is not a function 이더리움 web3로 이체하기 web3를 활용하여 이더리움 계좌이체를 진행하다가 나온 에러 2017년도의 정보로 web3.sendTransaction({to:receiver, from:sender, value:web3.toWei("0.5", "ether")}) 이렇게 썼다가 아래와 같은 에러가 나왔다. Error: web3.toWei is not a function​ 2018년 이후의 답변에서 찾아보니 web3 v1.0부터 toWei와 같은 많은 utility functions 들이 web3.utils. 안으로 옮겨졌다고 한다 !! -> we3.utils.toWei("0.5", "ether") 이렇게 작성하기 그러면 이제 두번째 에러가 나온다. Error : web3.sendtransaction is not a function 이번에.. 2022. 3. 31.
MetaMask - RPC Error: Permissions request already pending; please wait. {code: -32002, message: "Permissions request already pending; please wait."} MetaMask - RPC Error: Permissions request already pending; please wait. {code: -32002, message: "Permissions request already pending; please wait."} truffle, web3, react로 이더리움 explorer를 개발 중, 위와 같은 에러가 나왔다. 브라우저에서 메타마스크 상태를 잠금으로 해놓으면 잘 되던 사이트가 에러가 난다! 찾아보니 내가 이미 permissions request를 제출했지만 아직 유저가 메타마스크 로그인을 안했거나 나의 사이트 접근 허가가 되어 있지 않아서 그렇다고 한다. 도큐먼트에서 나왔듯이 "connect" 버튼은 connection request가 Pendin.. 2022. 3. 24.
truffle unbox react, unhandled rejection : Unhandled Rejection (Error): This contract object doesn't have address set yet, please set an address first. Unhandled Rejection (Error): This contract object doesn't have address set yet, please set an address first. -> react와 truffle, ganache를 동작하다가 나온 에러 해결법 : react 페이지가 뜬 브라우저의 메타마스크 지갑을 localhost로 바꿔주면 된다 !! 나는 Rinkeby 테스트넷에 연결되어 있어서 안되었다. Reference : https://stackoverflow.com/questions/56980736/truffle-unbox-react-unhandled-rejection 2022. 3. 17.
[ERROR] zsh: command not found: pip on mac / 맥북 pip설치 zsh: command not found: pip 맥북에 visual studio code를 다운 받은 후 터미널에 pip 를 입력하니 해당 명령어가 없다고 나왔다. 찾아보니 맥북에는 파이썬2가 기본적으로 설치되어 있어서 뭐가 안된다고 한다. pip3명령어는 잘 나오던데.. 찾다가 아래 명령어 이후 pip 명령어 사용이 가능했다. pip3 install --upgrade pip Reference : https://www.inflearn.com/questions/61696 2022. 3. 11.
Unexpected token u in JSON at position 0 npm run dev 명령어 실행 후 나온 에러 Unexpected token u in JSON at position 0 찾아보니 JSON.parse() 에 () 2022. 1. 12.
error TS2694: Namespace '"mongoose"' has no exported member 'ConnectionOptions' mongoose npm run dev 명령어를 실행하니까 import mongoose from 'mongoose'; const mongoDBConnection = mongoose.createConnection(uri, options as mongoose.ConnectionOptions); ConnectionOptions 부분이 빨간 줄이 그어지며 에러가 났다. 에러 메세지는 error TS2694: Namespace '"mongoose"' has no exported member 'ConnectionOptions' 해결법 npm install --save @types/mongodb 명령어를 입력해주니 오류가 해결됨! 2022. 1. 12.
반응형