win7 최신 nodejs 설치방법

컴퓨터 2022. 9. 7. 11:35

nodejs 에서 react 코딩을 하려고 하였으나

You are running Node 10.15.1.
Create React App requires Node 14 or higher.

최신 버전을 요구

최신 버전을 설치하려 했으나 win7 을 쓰고 있어서 반려 당함

How To Install Node.js on Windows 7
https://www.codingbroz.com/install-node-js-on-windows-7/

 

How To Install Node.js on Windows 7 - CodingBroz

Hello there Readers, welcome to the first episode of YPOS(Your Problems Our Solution). In this series we try to solve your each and every problem related to

www.codingbroz.com

 

위 내용을 참고 하여 nodejs 14.15.1 설치

win7 에서 설치 가능한 마지막 버전 msi 설치

https://nodejs.org/download/release/v13.14.0/

node-v13. 14.0-x64.msi 

Finally got Node 14.15.1 lts running on windows 7
https://www.reddit.com/r/node/comments/jxk65x/finally_got_node_14151_lts_running_on_windows_7/

필요한 최신의 nodejs 를 내려 받아서 업어쓰기 (overwrite) 필요한 환경 변수 설정

https://nodejs.org/download/release/v14.5.0/

downloaded the x64 zip for 14.15.1 and replaced the entire contents of the previous node installation from directory.
//node now gives out warnings about non supported os

https://nodejs.org/download/release/v14.5.0/


Go to control panel -> System -> Advanced System Settings then environment variables.

환경변수 설정 NODE_SKIP_PLATFORM_CHECK

under system variables i created a new one with NODE_SKIP_PLATFORM_CHECK and set its value to 1.
// might not want to install anything globally

C:\react>npm -v
6.14.5

ext4 복구

컴퓨터 2022. 9. 5. 23:13

mdadm

컴퓨터 2022. 9. 4. 22:21

mount -t ext4

-t xfs /dev/xvda1 /var



mdadm --create /dev/md2 --level=1 --raid-devices=1 --force /dev/sde

--name=DS918PLUS

mount /dev/md2 /mnt/ds918/


mdadm -E --scan
ARRAY /dev/md0 UUID=04910a5d:32ef8a3c:3017a5a8:c86610be
ARRAY /dev/md1 UUID=250638a4:d33091f1:cdd550b9:dc0f91c8
ARRAY /dev/md/2  metadata=1.2 UUID=53ee718c:8621820b:f0b0e6f6:1b58f455 name=DS918:2



mdadm --detail /dev/md2
/dev/md2:
        Version : 1.2
  Creation Time : Sun Sep  4 22:13:58 2022
     Raid Level : raid1
     Array Size : 3566592 (3.40 GiB 3.65 GB)
  Used Dev Size : 3566592 (3.40 GiB 3.65 GB)
   Raid Devices : 1
  Total Devices : 1
    Persistence : Superblock is persistent

    Update Time : Sun Sep  4 22:17:35 2022
          State : clean
 Active Devices : 1
Working Devices : 1
 Failed Devices : 0
  Spare Devices : 0

           Name : DS918:2  (local to host DS918)
           UUID : 53ee718c:8621820b:f0b0e6f6:1b58f455
         Events : 1

    Number   Major   Minor   RaidDevice State
       0       8       67        0      active sync   /dev/sde3

Wes McKinney - Apache Arrow and the Future of Data Frames

컴퓨터 2020. 7. 3. 08:45

Wes McKinney - Apache Arrow and the Future of Data Frames
https://www.facebook.com/AssociationForComputingMachinery/videos/wes_mckinney_is_an_omp4/193164858738319/

Wes McKinney: pandas in 10 minutes | Walkthrough
https://www.youtube.com/watch?v=_T8LGqJtuGc

PyData

ACM TechTalk

Google Talk

'컴퓨터' 카테고리의 다른 글

ext4 복구  (0) 2022.09.05
mdadm  (0) 2022.09.04
docker container에서 메일 보내기  (0) 2020.07.02
Machine learning algorithms can help us to estimate the risk of a financial decision  (0) 2020.07.02
How to Install PHP 5.6 on CentOS 7  (0) 2020.07.02

docker container에서 메일 보내기

컴퓨터 2020. 7. 2. 16:41

mail -s "Test Subject" your@gmail.com < dev/null
Null message body; hope that's ok
[root@6778acb18273 /]# send-mail: fatal: parameter inet_interfaces: no local interface found for ::1

docker run --rm --net="host" php:fpm-alpine sh -c 'echo "Subject: test" | sendmail -v your@mail.com'

Machine learning algorithms can help us to estimate the risk of a financial decision

컴퓨터 2020. 7. 2. 10:28

Financial Data Analysis – Data Processing 1: Loan Eligibility Prediction
https://www.kdnuggets.com/2018/09/financial-data-analysis-loan-eligibility-prediction.html

Machine learning algorithms can help us to estimate the risk of a financial decision
https://towardsdatascience.com/financial-data-analysis-80ba39149126

특정 값이 있는 row만

df = df.loc[(df['loan_status'].isin(['Fully Paid', 'Charged Off']))]

df.shape
(457728, 151)

중복 제거

df.drop_duplicates(inplace= True)

csv data
https://drive.google.com/drive/folders/1SrC90L7273QT2r3d6UBFmifwxo5qVqlY

ArcPy is a Python site package that provides a useful and productive way to perform geographic data analysis, data conversion,

data management, and map automation with Python.
https://pro.arcgis.com/en/pro-app/arcpy/get-started/what-is-arcpy-.htm

How to Install PHP 5.6 on CentOS 7

컴퓨터 2020. 7. 2. 10:02

How to Install PHP 5.6 on CentOS 7
https://www.tecmint.com/install-php-5-6-on-centos-7/

image-super-resolution

컴퓨터 2020. 4. 10. 09:37

import numpy as np
from PIL import Image

img = Image.open('data/input/test_images/sample_image.jpg')
lr_img = np.array(img)

from ISR.models import RDN

rdn = RDN(weights='psnr-small')
sr_img = rdn.predict(lr_img)
sr = Image.fromarray(sr_img)
sr.save('test.jpg', 'JPEG')


https://github.com/idealo/image-super-resolution

 

idealo/image-super-resolution

🔎 Super-scale your images and run experiments with Residual Dense and Adversarial Networks. - idealo/image-super-resolution

github.com

 

pip install ISR
https://idealo.github.io/image-super-resolution/tutorials/docker/

tensorflow==2.0.0


https://git-lfs.github.com

Using ISR with Docker

yum install git-lfs

 

 

https://idealo.github.io/image-super-resolution/#installation


FROM tensorflow/tensorflow:1.13.1-gpu-py3

# Install system packages
RUN apt-get update && apt-get install -y --no-install-recommends \
      bzip2 \
      g++ \
      git \
      graphviz \
      libgl1-mesa-glx \
      libhdf5-dev \
      openmpi-bin \
      screen \
      wget && \
    rm -rf /var/lib/apt/lists/* \
    apt-get upgrade

ENV TENSOR_HOME /home/isr
WORKDIR $TENSOR_HOME

COPY ISR ./ISR
COPY scripts ./scripts
COPY weights ./weights
COPY config.yml ./
COPY setup.py ./

RUN pip install --upgrade pip
RUN pip install -e ".[gpu]" --ignore-installed

ENV PYTHONPATH ./ISR/:$PYTHONPATH
ENTRYPOINT ["sh", "./scripts/entrypoint.sh"]



sed -i 's/archive.ubuntu.com/ftp.daumkakao.com/g' /etc/apt/sources.list

apt-get install -y vim

pip install -U pip



tensorflow==1.13.1

tensorflow-gpu==1.13.1



tensorflow==2.0.0



pip install keras

https://files.pythonhosted.org/packages/dc/29/162476fd44203116e7980cfbd9352eef9db37c49445d1fec35509022f6aa/scipy-1.4.1-cp36-cp36m-manylinux1_x86_64.whl






/root/.cache/pip/wheels/a7/c1/ea/cf5bd31012e735dc1dfea3131a2d5eae7978b251083d6247bd


https://s3.amazonaws.com/img-datasets/mnist.npz


root/.keras/datasets/mnist.npz


https://files.pythonhosted.org/packages/4c/2b/9dd19644f871b10f7e32eb2dbd6b45149c350b4d5f2893e091b882e03ab7/imageio-2.8.0-py3-none-any.whl


https://files.pythonhosted.org/packages/46/0f/7bd55361168bb32796b360ad15a25de6966c9c1beb58a8e30c01c8279862/tensorflow-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl


CPU 기반으로 설치 됨
소스 설치를 해야 함


nvidia docker
https://hub.docker.com/r/tensorflow/tensorflow/tags?page=2
https://www.tensorflow.org/install/docker


pip install ISR --no-deps
pip check

7 Innovative Machine Learning GitHub Projects you Should Try Out in Python

컴퓨터 2020. 4. 10. 09:34

7 Innovative Machine Learning GitHub Projects you Should Try Out in Python
https://www.analyticsvidhya.com/blog/2019/08/7-innovative-machine-learning-github-projects-in-python/


PyTorch-Transformers (NLP)
https://github.com/huggingface/transformers


NeuralClassifier (NLP)
https://github.com/Tencent/NeuralNLP-NeuralClassifier


TDEngine (Big Data)
https://github.com/taosdata/TDengine


Video Object Removal (Computer Vision)
https://github.com/zllrunning/video-object-removal


Python Autocomplete (Programming)
https://github.com/vpj/python_autocomplete



tfpyth – TensorFlow to PyTorch to TensorFlow (Programming)
github.com/BlackHC/tfpyth


MedicalNet
https://github.com/Tencent/MedicalNet

'컴퓨터' 카테고리의 다른 글

How to Install PHP 5.6 on CentOS 7  (0) 2020.07.02
image-super-resolution  (1) 2020.04.10
deepai  (0) 2020.04.10
Full HD 영상 4k 영상으로 변환  (0) 2020.04.10
레이첼 라즈베리파이  (0) 2020.04.10

deepai

컴퓨터 2020. 4. 10. 09:24

https://deepai.org